diff --git a/couchpotato/core/providers/automation/bluray/main.py b/couchpotato/core/providers/automation/bluray/main.py index 20f733b..ac28152 100644 --- a/couchpotato/core/providers/automation/bluray/main.py +++ b/couchpotato/core/providers/automation/bluray/main.py @@ -2,7 +2,6 @@ from couchpotato.core.helpers.rss import RSS from couchpotato.core.helpers.variable import md5, tryInt from couchpotato.core.logger import CPLog from couchpotato.core.providers.automation.base import Automation -from couchpotato.environment import Env import xml.etree.ElementTree as XMLTree log = CPLog(__name__) diff --git a/couchpotato/core/providers/nzb/mysterbin/__init__.py b/couchpotato/core/providers/nzb/mysterbin/__init__.py index b34f72f..fd4de65 100644 --- a/couchpotato/core/providers/nzb/mysterbin/__init__.py +++ b/couchpotato/core/providers/nzb/mysterbin/__init__.py @@ -10,7 +10,7 @@ config = [{ 'tab': 'searcher', 'subtab': 'nzb_providers', 'name': 'Mysterbin', - 'description': 'Free provider, less accurate. See Mysterbin', + 'description': 'Free provider, less accurate. See Mysterbin', 'options': [ { 'name': 'enabled', diff --git a/couchpotato/core/providers/nzb/newznab/__init__.py b/couchpotato/core/providers/nzb/newznab/__init__.py index 712f03e..b0e8b48 100644 --- a/couchpotato/core/providers/nzb/newznab/__init__.py +++ b/couchpotato/core/providers/nzb/newznab/__init__.py @@ -11,7 +11,7 @@ config = [{ 'subtab': 'nzb_providers', 'name': 'newznab', 'order': 10, - 'description': 'Enable multiple NewzNab providers such as NZB.su and nzbs.org', + 'description': 'Enable multiple NewzNab providers such as NZB.su and nzbs.org', 'wizard': True, 'options': [ { diff --git a/couchpotato/core/providers/nzb/nzbindex/__init__.py b/couchpotato/core/providers/nzb/nzbindex/__init__.py index 5bf5cd4..51ee6d9 100644 --- a/couchpotato/core/providers/nzb/nzbindex/__init__.py +++ b/couchpotato/core/providers/nzb/nzbindex/__init__.py @@ -10,7 +10,7 @@ config = [{ 'tab': 'searcher', 'subtab': 'nzb_providers', 'name': 'nzbindex', - 'description': 'Free provider, less accurate. See NZBIndex', + 'description': 'Free provider, less accurate. See NZBIndex', 'options': [ { 'name': 'enabled', diff --git a/couchpotato/core/providers/nzb/nzbindex/main.py b/couchpotato/core/providers/nzb/nzbindex/main.py index ee2092c..109792e 100644 --- a/couchpotato/core/providers/nzb/nzbindex/main.py +++ b/couchpotato/core/providers/nzb/nzbindex/main.py @@ -19,8 +19,8 @@ log = CPLog(__name__) class NzbIndex(NZBProvider, RSS): urls = { - 'download': 'http://www.nzbindex.nl/download/', - 'api': 'http://www.nzbindex.nl/rss/', + 'download': 'https://www.nzbindex.com/download/', + 'api': 'https://www.nzbindex.com/rss/', } http_time_between_calls = 1 # Seconds diff --git a/couchpotato/core/providers/torrent/passthepopcorn/__init__.py b/couchpotato/core/providers/torrent/passthepopcorn/__init__.py index 44d98cb..507c104 100644 --- a/couchpotato/core/providers/torrent/passthepopcorn/__init__.py +++ b/couchpotato/core/providers/torrent/passthepopcorn/__init__.py @@ -10,7 +10,7 @@ config = [{ 'tab': 'searcher', 'subtab': 'torrent_providers', 'name': 'PassThePopcorn', - 'description': 'See PassThePopcorn.me', + 'description': 'See PassThePopcorn.me', 'options': [ { 'name': 'enabled', diff --git a/couchpotato/core/providers/torrent/publichd/__init__.py b/couchpotato/core/providers/torrent/publichd/__init__.py index edffeba..648c676 100644 --- a/couchpotato/core/providers/torrent/publichd/__init__.py +++ b/couchpotato/core/providers/torrent/publichd/__init__.py @@ -10,7 +10,7 @@ config = [{ 'tab': 'searcher', 'subtab': 'torrent_providers', 'name': 'PublicHD', - 'description': 'Public Torrent site with only HD content. See PublicHD', + 'description': 'Public Torrent site with only HD content. See PublicHD', 'options': [ { 'name': 'enabled', diff --git a/couchpotato/core/providers/torrent/publichd/main.py b/couchpotato/core/providers/torrent/publichd/main.py index 5996fe9..c43d1ab 100644 --- a/couchpotato/core/providers/torrent/publichd/main.py +++ b/couchpotato/core/providers/torrent/publichd/main.py @@ -14,9 +14,9 @@ log = CPLog(__name__) class PublicHD(TorrentProvider): urls = { - 'test': 'http://publichd.eu', - 'detail': 'http://publichd.eu/index.php?page=torrent-details&id=%s', - 'search': 'http://publichd.eu/index.php', + 'test': 'https://publichd.eu', + 'detail': 'https://publichd.eu/index.php?page=torrent-details&id=%s', + 'search': 'https://publichd.eu/index.php', } http_time_between_calls = 0 diff --git a/couchpotato/core/providers/torrent/scenehd/__init__.py b/couchpotato/core/providers/torrent/scenehd/__init__.py index a3d0313..69cf8a1 100644 --- a/couchpotato/core/providers/torrent/scenehd/__init__.py +++ b/couchpotato/core/providers/torrent/scenehd/__init__.py @@ -10,7 +10,7 @@ config = [{ 'tab': 'searcher', 'subtab': 'torrent_providers', 'name': 'SceneHD', - 'description': 'See SceneHD', + 'description': 'See SceneHD', 'options': [ { 'name': 'enabled', diff --git a/couchpotato/core/providers/torrent/scenehd/main.py b/couchpotato/core/providers/torrent/scenehd/main.py index 596cb5b..40e0baf 100644 --- a/couchpotato/core/providers/torrent/scenehd/main.py +++ b/couchpotato/core/providers/torrent/scenehd/main.py @@ -12,11 +12,11 @@ log = CPLog(__name__) class SceneHD(TorrentProvider): urls = { - 'test': 'http://scenehd.org/', - 'login' : 'http://scenehd.org/takelogin.php', - 'detail': 'http://scenehd.org/details.php?id=%s', - 'search': 'http://scenehd.org/browse.php?ajax', - 'download': 'http://scenehd.org/download.php?id=%s', + 'test': 'https://scenehd.org/', + 'login' : 'https://scenehd.org/takelogin.php', + 'detail': 'https://scenehd.org/details.php?id=%s', + 'search': 'https://scenehd.org/browse.php?ajax', + 'download': 'https://scenehd.org/download.php?id=%s', } http_time_between_calls = 1 #seconds