summaryrefslogtreecommitdiff
path: root/django/utils
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-06 20:00:48 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-06 20:00:48 -0800
commite5b7045422d8e02de8aa05a69f689fa91fcbbeba (patch)
treeb506efa86d50d03870c117955579caef1bc45a63 /django/utils
parentf16abe44a1ec1dda46a962af4d32405b20c78c1c (diff)
flake8 fixes
Diffstat (limited to 'django/utils')
-rw-r--r--django/utils/translation/trans_real.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/translation/trans_real.py b/django/utils/translation/trans_real.py
index 8a7a7fafff..e3081dd19a 100644
--- a/django/utils/translation/trans_real.py
+++ b/django/utils/translation/trans_real.py
@@ -49,7 +49,7 @@ accept_language_re = re.compile(r'''
language_code_prefix_re = re.compile(r'^/([\w-]+)(/|$)')
# some browsers use deprecated locales. refs #18419
-_BROWSERS_DEPRECATED_LOCALES = {
+_BROWSERS_DEPRECATED_LOCALES = {
'zh-cn': 'zh-hans',
'zh-tw': 'zh-hant',
}