diff options
Diffstat (limited to 'searx/webapp.py')
| -rw-r--r-- | searx/webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 347ee969d..ec8fe8fb3 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -252,7 +252,7 @@ def list_engines(): """ return render('engines.html', categs=categories.items(), - shortcuts={y:x for x,y in engine_shortcuts.items()}) + shortcuts={y: x for x, y in engine_shortcuts.items()}) @app.route('/preferences', methods=['GET', 'POST']) |