Browse Source

[fix] pep8 compatibility

asciimoo 11 years ago
parent
commit
ba0f818e89
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      searx/webapp.py

+ 3
- 3
searx/webapp.py View File

@@ -252,9 +252,9 @@ def preferences():
252 252
                 max_age=60 * 60 * 24 * 7 * 4
253 253
             )
254 254
         return resp
255
-    return render('preferences.html'
256
-                  ,locales=settings['locales']
257
-                  ,current_locale=get_locale())
255
+    return render('preferences.html',
256
+                  locales=settings['locales'],
257
+                  current_locale=get_locale())
258 258
 
259 259
 
260 260
 @app.route('/stats', methods=['GET'])