summaryrefslogtreecommitdiff
path: root/searx/engines/bing_images.py
diff options
context:
space:
mode:
authorThomas Pointhuber <thomas.pointhuber@gmx.at>2014-09-02 17:13:44 +0200
committerThomas Pointhuber <thomas.pointhuber@gmx.at>2014-09-02 17:13:44 +0200
commit3d61d9b9308df7e07ab5ccee6e2f323652b4be2d (patch)
treeade7e0d9139d8b85426be92ca67701ab03000867 /searx/engines/bing_images.py
parent16d15268181d536f1cf7126674619e942fc23b99 (diff)
downloadsearxng-3d61d9b9308df7e07ab5ccee6e2f323652b4be2d.tar.gz
searxng-3d61d9b9308df7e07ab5ccee6e2f323652b4be2d.zip
little refactoring
Diffstat (limited to 'searx/engines/bing_images.py')
-rw-r--r--searx/engines/bing_images.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/searx/engines/bing_images.py b/searx/engines/bing_images.py
index 5f7f36bc1..8f77e15ce 100644
--- a/searx/engines/bing_images.py
+++ b/searx/engines/bing_images.py
@@ -24,6 +24,7 @@ paging = True
base_url = 'https://www.bing.com/'
search_string = 'images/search?{query}&count=10&first={offset}'
+
# do search-request
def request(query, params):
offset = (params['pageno'] - 1) * 10 + 1