summaryrefslogtreecommitdiff
path: root/searx/autocomplete.py
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2015-08-02 19:38:27 +0200
committerAdam Tauber <asciimoo@gmail.com>2015-08-02 20:32:22 +0200
commit1fcf066a8188b28eb644ea304a131d40b1b341eb (patch)
tree2e5dbd18300e41fc93870921840d3cafbc701d97 /searx/autocomplete.py
parentd0830d4edf8a9ee794d5897afd813c88f0ea720b (diff)
downloadsearxng-1fcf066a8188b28eb644ea304a131d40b1b341eb.tar.gz
searxng-1fcf066a8188b28eb644ea304a131d40b1b341eb.zip
[mod] change settings file structure according to #314
Diffstat (limited to 'searx/autocomplete.py')
-rw-r--r--searx/autocomplete.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/autocomplete.py b/searx/autocomplete.py
index 1a324b8a9..264d0cc1f 100644
--- a/searx/autocomplete.py
+++ b/searx/autocomplete.py
@@ -29,7 +29,7 @@ from searx.poolrequests import get as http_get
def get(*args, **kwargs):
if 'timeout' not in kwargs:
- kwargs['timeout'] = settings['server']['request_timeout']
+ kwargs['timeout'] = settings['outgoing']['request_timeout']
return http_get(*args, **kwargs)