1
0
mirror of https://github.com/searxng/searxng.git synced 2024-11-19 19:00:10 +01:00

[fix] pep8 fix for faroo engine

This commit is contained in:
misnyo 2017-08-30 19:48:57 +02:00 committed by Adam Tauber
parent 0607b167f8
commit 20d2d4dab1

View File

@ -79,8 +79,7 @@ def response(resp):
# parse results # parse results
for result in search_res['results']: for result in search_res['results']:
publishedDate = None publishedDate = None
result_json = {'url': result['url'], result_json = {'url': result['url'], 'title': result['title'],
'title': result['title'],
'content': result['kwic']} 'content': result['kwic']}
if result['news']: if result['news']:
result_json['publishedDate'] = \ result_json['publishedDate'] = \