diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2016-08-11 13:33:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-11 13:33:59 +0200 |
| commit | 31866d9f3357683949971b62d44e01b3d73befe1 (patch) | |
| tree | 8dfdbf84609ae189af725e569b7d35656ce01ab3 /searx/engines/archlinux.py | |
| parent | 827aba45991d8379054a2c098e0a4bc44984fb44 (diff) | |
| parent | 7e16c9d3602eb7e545c3452a6778c31d59e5c56d (diff) | |
Merge pull request #629 from stepshal/E305
Add missing blank lines after class or function definition.
Diffstat (limited to 'searx/engines/archlinux.py')
| -rw-r--r-- | searx/engines/archlinux.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/searx/engines/archlinux.py b/searx/engines/archlinux.py index 84e0d0fba..b846934f7 100644 --- a/searx/engines/archlinux.py +++ b/searx/engines/archlinux.py @@ -34,6 +34,7 @@ def locale_to_lang_code(locale): locale = locale.split('_')[0] return locale + # wikis for some languages were moved off from the main site, we need to make # requests to correct URLs to be able to get results in those languages lang_urls = { @@ -70,6 +71,7 @@ def get_lang_urls(language): return lang_urls[language] return lang_urls['all'] + # Language names to build search requests for # those languages which are hosted on the main site. main_langs = { |