diff options
author | Adam Tauber <asciimoo@gmail.com> | 2015-08-02 19:38:27 +0200 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2015-08-02 20:32:22 +0200 |
commit | 1fcf066a8188b28eb644ea304a131d40b1b341eb (patch) | |
tree | 2e5dbd18300e41fc93870921840d3cafbc701d97 /searx/autocomplete.py | |
parent | d0830d4edf8a9ee794d5897afd813c88f0ea720b (diff) | |
download | searxng-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.py | 2 |
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) |