diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2014-02-05 20:29:05 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2014-02-05 20:29:05 +0100 |
| commit | b8d836e445484b6db4a2fd4c9102e0518889f220 (patch) | |
| tree | c7a2b84de48cd068343f0b7986055c7f7981e31e /searx/engines/bing.py | |
| parent | b22dd51bd7fc7234a40b664964a6210cbe7bf455 (diff) | |
| parent | 22fd0746d94ec9285561b4da9a59939931a6c088 (diff) | |
Merge pull request #34 from Aigeruth/pep8
Improves PEP8 compatibility.
Diffstat (limited to 'searx/engines/bing.py')
| -rw-r--r-- | searx/engines/bing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/bing.py b/searx/engines/bing.py index 00f66b118..9712a3103 100644 --- a/searx/engines/bing.py +++ b/searx/engines/bing.py @@ -1,6 +1,6 @@ -from lxml import html from urllib import urlencode from cgi import escape +from lxml import html base_url = 'http://www.bing.com/' search_string = 'search?{query}&first={offset}' |