diff options
author | Adam Tauber <asciimoo@gmail.com> | 2014-07-09 01:18:37 +0200 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2014-07-09 01:18:37 +0200 |
commit | 66f02dc2b6b0c6127ba908ad9be3a97dfd633f7f (patch) | |
tree | 8a63e497c1e34ab642c8c34a815b15787909d987 /searx/engines/bing.py | |
parent | 84c3251bdc86052acb8a1baf92684417eb362edc (diff) | |
download | searxng-66f02dc2b6b0c6127ba908ad9be3a97dfd633f7f.tar.gz searxng-66f02dc2b6b0c6127ba908ad9be3a97dfd633f7f.zip |
[fix] unused globals removed
Diffstat (limited to 'searx/engines/bing.py')
-rw-r--r-- | searx/engines/bing.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/searx/engines/bing.py b/searx/engines/bing.py index 9712a3103..88b097289 100644 --- a/searx/engines/bing.py +++ b/searx/engines/bing.py @@ -27,7 +27,6 @@ def request(query, params): def response(resp): - global base_url results = [] dom = html.fromstring(resp.content) for result in dom.xpath('//div[@class="sa_cc"]'): |