diff options
| author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-12-16 17:26:16 +0100 |
|---|---|---|
| committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-12-16 17:26:16 +0100 |
| commit | a508d540ac43196edeb4d946dfdf64a1d0a438ed (patch) | |
| tree | 7d2b5101dfa91c3d2a81467a1bf58bba26be6362 /searx/engines/kickass.py | |
| parent | 91f9973227e003604e036278e42a4c6394bf5478 (diff) | |
[fix] pep8
Diffstat (limited to 'searx/engines/kickass.py')
| -rw-r--r-- | searx/engines/kickass.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/searx/engines/kickass.py b/searx/engines/kickass.py index de7324141..f1fcd9e1a 100644 --- a/searx/engines/kickass.py +++ b/searx/engines/kickass.py @@ -1,8 +1,8 @@ ## Kickass Torrent (Videos, Music, Files) -# +# # @website https://kickass.so # @provide-api no (nothing found) -# +# # @using-api no # @results HTML (using search portal) # @stable yes (HTML can change) @@ -13,7 +13,6 @@ from cgi import escape from urllib import quote from lxml import html from operator import itemgetter -from dateutil import parser # engine dependent config categories = ['videos', 'music', 'files'] @@ -33,7 +32,8 @@ def request(query, params): params['url'] = search_url.format(search_term=quote(query), pageno=params['pageno']) - # FIX: SSLError: hostname 'kickass.so' doesn't match either of '*.kickass.to', 'kickass.to' + # FIX: SSLError: hostname 'kickass.so' + # doesn't match either of '*.kickass.to', 'kickass.to' params['verify'] = False return params |