[fix] add py3 compatibility to base engine - closes #1319

This commit is contained in:
Adam Tauber 2018-06-14 11:50:03 +02:00
parent aef2b07969
commit f82ead3e30
1 changed files with 1 additions and 1 deletions

View File

@ -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