diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2018-04-05 17:27:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-05 17:27:07 +0200 |
| commit | 283f6c905340087d7511bfcdb815c0b4183bcdda (patch) | |
| tree | f5e450b1f02bde6fb52e7504e559fc96786ed807 /searx/engines/archlinux.py | |
| parent | fb2dba4762541394954b295d60cb255c2785bc65 (diff) | |
| parent | 772c048d01c7585fd60afca1ce30a1914e6e5b4a (diff) | |
Merge pull request #1252 from MarcAbonce/search-languages
[mod] Refactor engine's search language handling
Diffstat (limited to 'searx/engines/archlinux.py')
| -rw-r--r-- | searx/engines/archlinux.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/engines/archlinux.py b/searx/engines/archlinux.py index 245bc50b2..fc08112af 100644 --- a/searx/engines/archlinux.py +++ b/searx/engines/archlinux.py @@ -99,13 +99,13 @@ supported_languages = dict(lang_urls, **main_langs) # do search-request def request(query, params): - # translate the locale (e.g. 'en_US') to language code ('en') + # translate the locale (e.g. 'en-US') to language code ('en') language = locale_to_lang_code(params['language']) # if our language is hosted on the main site, we need to add its name # to the query in order to narrow the results to that language if language in main_langs: - query += '(' + main_langs[language] + ')' + query += b' (' + main_langs[language] + b')' # prepare the request parameters query = urlencode({'search': query}) |