To adhear to http_utils the path is split into a list.

This commit is contained in:
2017-12-22 12:53:31 +01:00
parent 98c05a380d
commit d327f0fc72

View File

@@ -41,7 +41,7 @@ class Jackett(object):
:rtype: list :rtype: list
""" """
baseUrl = 'http://' + self.host baseUrl = 'http://' + self.host
path = self.get_path() path = self.get_path().split('/')
url_args = { url_args = {
'apikey': self.get_apikey(), 'apikey': self.get_apikey(),
'limit': self.get_page_limit(), 'limit': self.get_page_limit(),