summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2014-01-22 01:20:38 +0100
committerasciimoo <asciimoo@gmail.com>2014-01-22 01:20:38 +0100
commitba0f818e89b32ddd7c4d5d9c5f2f8fb2d6703a94 (patch)
tree716ddb00fae2ba2bf1e1a8d6b8d526bc9151e99c
parentaef6e176538253e2264863b85a7341d714cd2452 (diff)
[fix] pep8 compatibility
-rw-r--r--searx/webapp.py6
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'])