diff options
| author | asciimoo <asciimoo@gmail.com> | 2014-01-22 01:20:38 +0100 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2014-01-22 01:20:38 +0100 |
| commit | ba0f818e89b32ddd7c4d5d9c5f2f8fb2d6703a94 (patch) | |
| tree | 716ddb00fae2ba2bf1e1a8d6b8d526bc9151e99c /searx/webapp.py | |
| parent | aef6e176538253e2264863b85a7341d714cd2452 (diff) | |
[fix] pep8 compatibility
Diffstat (limited to 'searx/webapp.py')
| -rw-r--r-- | searx/webapp.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index cf1e71ef2..b6d3e2b08 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -252,9 +252,9 @@ def preferences(): max_age=60 * 60 * 24 * 7 * 4 ) return resp - return render('preferences.html' - ,locales=settings['locales'] - ,current_locale=get_locale()) + return render('preferences.html', + locales=settings['locales'], + current_locale=get_locale()) @app.route('/stats', methods=['GET']) |