diff options
| author | asciimoo <asciimoo@gmail.com> | 2014-01-31 16:17:49 +0100 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2014-01-31 16:17:49 +0100 |
| commit | 455ff25a9326691bf01a644a91ace9f314d9024c (patch) | |
| tree | 52809dd72dda947cdae4c98bde023bc98dfad421 /searx/webapp.py | |
| parent | 017c85c447f5ffb976ceae58bf66964022c6fe0a (diff) | |
[fix] pep8
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']) |