From d327f0fc72236f25600b54c2a0b6549123975a3c Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Fri, 22 Dec 2017 12:53:31 +0100 Subject: [PATCH] To adhear to http_utils the path is split into a list. --- torrentSearch/jackett.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torrentSearch/jackett.py b/torrentSearch/jackett.py index 427a9a9..d5f84e8 100644 --- a/torrentSearch/jackett.py +++ b/torrentSearch/jackett.py @@ -41,7 +41,7 @@ class Jackett(object): :rtype: list """ baseUrl = 'http://' + self.host - path = self.get_path() + path = self.get_path().split('/') url_args = { 'apikey': self.get_apikey(), 'limit': self.get_page_limit(),