mirror of
https://github.com/searxng/searxng.git
synced 2024-11-22 12:10:11 +01:00
[fix] add py3 compatibility to base engine - closes #1319
This commit is contained in:
parent
aef2b07969
commit
f82ead3e30
@ -55,7 +55,7 @@ shorcut_dict = {
|
||||
def request(query, params):
|
||||
# replace shortcuts with API advanced search keywords
|
||||
for key in shorcut_dict.keys():
|
||||
query = re.sub(str(key), str(shorcut_dict[key]), query)
|
||||
query = re.sub(key, shorcut_dict[key], str(query))
|
||||
|
||||
# basic search
|
||||
offset = (params['pageno'] - 1) * number_of_results
|
||||
|
Loading…
Reference in New Issue
Block a user