diff options
author | renyhp <renyhp@disroot.org> | 2020-11-26 16:27:46 +0100 |
---|---|---|
committer | renyhp <renyhp@disroot.org> | 2020-11-26 16:27:46 +0100 |
commit | 844ae0b31084bea7559cb469edc0e425983886ba (patch) | |
tree | 13e23cf105e3a9fef017a2fd9b586ab83fc33404 /searx/webapp.py | |
parent | 4979b4f9d98186d0a5a8d10c096673c596462eb5 (diff) | |
download | searxng-844ae0b31084bea7559cb469edc0e425983886ba.tar.gz searxng-844ae0b31084bea7559cb469edc0e425983886ba.zip |
Fix syntax error
Diffstat (limited to 'searx/webapp.py')
-rwxr-xr-x | searx/webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 9ec5fc33f..5eb6110e6 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -577,7 +577,7 @@ def search(): if output_format == 'html': return render( 'index.html', - advanced_search=request.preferences.get_value('advanced_search') + advanced_search=request.preferences.get_value('advanced_search'), selected_categories=get_selected_categories(request.preferences, request.form), ) else: |