Fix startpage

Fix issue with unicode caracters in startpage : we shouldn't urlencode them if we are using POST.
Should fix #169. @dimqua can you confirm ?
This commit is contained in:
Cqoicebordel 2015-01-15 20:18:40 +01:00
parent 75bd4556f8
commit fa0330f0ff

View file

@ -38,7 +38,6 @@ link_xpath = './/h3/a'
# do search-request
def request(query, params):
offset = (params['pageno'] - 1) * 10
query = urlencode({'q': query})[2:]
params['url'] = search_url
params['method'] = 'POST'