1
0
mirror of https://github.com/searxng/searxng.git synced 2024-06-30 22:50:16 +02:00

ddg encoding of URLs appears to be broken, revealed when trying to pickled the results to disk

This commit is contained in:
Emmanuel Benazera 2015-09-01 16:47:56 +02:00
parent f094188780
commit 78a69e4c98

View File

@ -72,7 +72,7 @@ def response(resp):
# append result
results.append({'title': title,
'content': content,
'url': res_url})
'url': res_url.encode('utf8')})
# return results
return results