aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/views.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-01 18:15:55 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-01 18:15:55 +0200
commit040a11033beb098381dce49b79a9ebb1d9db5f37 (patch)
tree571b930f0c5c33419c71f8d96579b68e84e75855 /pyaggr3g470r/views.py
parentUpdated README. (diff)
downloadnewspipe-040a11033beb098381dce49b79a9ebb1d9db5f37.tar.gz
newspipe-040a11033beb098381dce49b79a9ebb1d9db5f37.tar.bz2
newspipe-040a11033beb098381dce49b79a9ebb1d9db5f37.zip
Updated french translations.
Diffstat (limited to 'pyaggr3g470r/views.py')
-rw-r--r--pyaggr3g470r/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py
index f9a44228..e9b2e509 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -119,7 +119,7 @@ def get_locale():
Called before each request to give us a chance to choose
the language to use when producing its response.
"""
- return request.accept_languages.best_match(conf.LANGUAGES.keys())
+ return "fr"#request.accept_languages.best_match(conf.LANGUAGES.keys())
#
bgstack15