From d24c58cf4eafaf574cbc5b19243da922de2416f6 Mon Sep 17 00:00:00 2001 From: Alice Ferrazzi Date: Sun, 19 Aug 2018 10:31:09 +0900 Subject: [PATCH] Fix pep8 errors --- searx/engines/gentoo.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/searx/engines/gentoo.py b/searx/engines/gentoo.py index 39568a14..a7a966cc 100644 --- a/searx/engines/gentoo.py +++ b/searx/engines/gentoo.py @@ -35,7 +35,7 @@ def locale_to_lang_code(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= { +lang_urls = { 'en': { 'base': 'https://wiki.gentoo.org', 'search': '/index.php?title=Special:Search&offset={offset}&{query}' @@ -100,7 +100,8 @@ def request(query, params): urls = get_lang_urls(language) search_url = urls['base'] + urls['search'] - params['url'] = search_url.format(query=query, offset=offset, language=language) + params['url'] = search_url.format(query=query, offset=offset, + language=language) return params