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.

This commit is contained in:
2017-11-18 23:38:47 +01:00
parent 655259c146
commit 783d9870f5

View File

@@ -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)