From 783d9870f5b71a639fb01dfba2255c8503d4d5ad Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Sat, 18 Nov 2017 23:38:47 +0100 Subject: [PATCH] When building jackett url we no longer use, convert_query_to_percent_encoded_octets, this is now done in our build_url function in http_utils. --- torrentSearch/jackett.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torrentSearch/jackett.py b/torrentSearch/jackett.py index 74f0724..bdd4bd2 100644 --- a/torrentSearch/jackett.py +++ b/torrentSearch/jackett.py @@ -41,7 +41,7 @@ class Jackett(object): args_dict = { 'apikey': self.get_apikey(), 'limit': self.get_page_limit(), - 'q': convert_query_to_percent_encoded_octets(query) + 'q': query } url = build_url(self.ssl, baseUrl, path, args_dict)