diff options
author | asciimoo <asciimoo@gmail.com> | 2014-01-31 05:11:37 +0100 |
---|---|---|
committer | asciimoo <asciimoo@gmail.com> | 2014-01-31 05:11:37 +0100 |
commit | 3a2b9a86829e1a7f9bae1d3f3f69fc3bbb38cd93 (patch) | |
tree | 49aff56f348a83693e1af7d5cde7df1532790faf /searx/engines/yahoo.py | |
parent | 68a08325241478df8374a8dd640d74648bdc4b72 (diff) | |
download | searxng-3a2b9a86829e1a7f9bae1d3f3f69fc3bbb38cd93.tar.gz searxng-3a2b9a86829e1a7f9bae1d3f3f69fc3bbb38cd93.zip |
[fix] pep8
Diffstat (limited to 'searx/engines/yahoo.py')
-rw-r--r-- | searx/engines/yahoo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/yahoo.py b/searx/engines/yahoo.py index 2fbd785cf..436a2d7a6 100644 --- a/searx/engines/yahoo.py +++ b/searx/engines/yahoo.py @@ -24,7 +24,7 @@ def request(query, params): params['url'] = search_url.format(offset=offset, query=urlencode({'p': query})) params['cookies']['sB'] = 'fl=1&vl=lang_{lang}&sh=1&rw=new&v=1'\ - .format(lang=language) + .format(lang=language) return params |