diff options
| author | asciimoo <asciimoo@gmail.com> | 2014-01-29 23:57:50 +0100 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2014-01-29 23:57:50 +0100 |
| commit | 63714c17599cb7dc72806ecd84ee054648dae048 (patch) | |
| tree | df8e013de7f66fa1297e442f2f3417ae945af55f | |
| parent | 1b05265bf9fb0f52886e0b545ba493a766eb6148 (diff) | |
[fix] unused var removed
| -rw-r--r-- | searx/webapp.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 6f9d1745e..42206435e 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -174,7 +174,6 @@ def index(): results, suggestions = search(query, request, selected_engines, pageno) - featured_results = [] for result in results: if not paging and engines[result['engine']].paging: paging = True @@ -229,7 +228,6 @@ def index(): selected_categories=selected_categories, paging=paging, pageno=pageno, - featured_results=featured_results, suggestions=suggestions ) |