forked from Icycoide/searxng
[fix] bing unicode encode error - fixes #408
This commit is contained in:
parent
b9c8039d74
commit
604f32f672
6 changed files with 18 additions and 18 deletions
|
@ -63,7 +63,7 @@ def request(query, params):
|
|||
def response(resp):
|
||||
results = []
|
||||
|
||||
dom = html.fromstring(resp.content)
|
||||
dom = html.fromstring(resp.text)
|
||||
|
||||
# init regex for yaml-parsing
|
||||
p = re.compile('({|,)([a-z]+):(")')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue