diff options
| author | marc <a01200356@itesm.mx> | 2016-08-05 23:34:56 -0500 |
|---|---|---|
| committer | marc <a01200356@itesm.mx> | 2016-12-13 19:32:00 -0600 |
| commit | 149802c56926bf48520c98932c4c36b8152b3d2d (patch) | |
| tree | f450a584a785c31a1c118be29b3039f779a0cb70 /searx/engines/yandex.py | |
| parent | e58949b76fac7aa93341523ff0e2f35e0a03e057 (diff) | |
[enh] add supported_languages on engines and auto-generate languages.py
Diffstat (limited to 'searx/engines/yandex.py')
| -rw-r--r-- | searx/engines/yandex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/yandex.py b/searx/engines/yandex.py index b83a747f9..eee345c45 100644 --- a/searx/engines/yandex.py +++ b/searx/engines/yandex.py @@ -36,7 +36,7 @@ content_xpath = './/div[@class="text-container typo typo_text_m typo_line_m orga def request(query, params): - lang = params['language'].split('_')[0] + lang = params['language'].split('-')[0] host = base_url.format(tld=language_map.get(lang) or default_tld) params['url'] = host + search_url.format(page=params['pageno'] - 1, query=urlencode({'text': query})) |