diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-03-08 23:30:31 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-03-08 23:30:31 +0100 |
| commit | d1b12f9016492143a4b3750c9fba89a7168fa179 (patch) | |
| tree | 0f881b48b0c34a1280f33622fc48ba4218a89aed /searx/webapp.py | |
| parent | 4cc79533e7452e4c08a2654f1ee1022307d227b0 (diff) | |
[mod] search return value
Diffstat (limited to 'searx/webapp.py')
| -rw-r--r-- | searx/webapp.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 13c965e0d..f71df796a 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -323,8 +323,7 @@ def index(): 'index.html', ) - search.results, search.suggestions,\ - search.answers, search.infoboxes = search.search(request) + search.search(request) for result in search.results: |