diff --git a/resources/site-packages/xbmctorrent/scrapers/eztv.py b/resources/site-packages/xbmctorrent/scrapers/eztv.py index f7aa093..e80af40 100644 --- a/resources/site-packages/xbmctorrent/scrapers/eztv.py +++ b/resources/site-packages/xbmctorrent/scrapers/eztv.py @@ -5,7 +5,7 @@ from xbmctorrent.utils import ensure_fanart -BASE_URL = plugin.get_setting("base_eztv") +BASE_URL = "%s/" % plugin.get_setting("base_eztv") HEADERS = { "Referer": BASE_URL, } diff --git a/resources/site-packages/xbmctorrent/scrapers/kickass.py b/resources/site-packages/xbmctorrent/scrapers/kickass.py index 2d8e1c7..9b58d4b 100644 --- a/resources/site-packages/xbmctorrent/scrapers/kickass.py +++ b/resources/site-packages/xbmctorrent/scrapers/kickass.py @@ -5,7 +5,7 @@ from xbmctorrent.utils import ensure_fanart -BASE_URL = plugin.get_setting("base_kickass") +BASE_URL = "%s/" % plugin.get_setting("base_kickass") HEADERS = { "Referer": BASE_URL, } diff --git a/resources/site-packages/xbmctorrent/scrapers/tpb.py b/resources/site-packages/xbmctorrent/scrapers/tpb.py index addaf9d..16641cb 100644 --- a/resources/site-packages/xbmctorrent/scrapers/tpb.py +++ b/resources/site-packages/xbmctorrent/scrapers/tpb.py @@ -5,7 +5,7 @@ from xbmctorrent.utils import ensure_fanart -BASE_URL = plugin.get_setting("base_tpb") +BASE_URL = "%s/" % plugin.get_setting("base_tpb") HEADERS = { "Referer": BASE_URL, } diff --git a/resources/site-packages/xbmctorrent/scrapers/yify.py b/resources/site-packages/xbmctorrent/scrapers/yify.py index e9edfb2..99d1ad1 100644 --- a/resources/site-packages/xbmctorrent/scrapers/yify.py +++ b/resources/site-packages/xbmctorrent/scrapers/yify.py @@ -5,7 +5,7 @@ from xbmctorrent.utils import ensure_fanart -BASE_URL = plugin.get_setting("base_yify") +BASE_URL = "%s/" % plugin.get_setting("base_yify") HEADERS = { "Referer": BASE_URL, }