mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Fix python2 breakage caused by e5e044da87.
This commit is contained in:
@@ -209,8 +209,8 @@ def activate(language):
|
||||
thread.
|
||||
"""
|
||||
if language in _DEPRECATED_LOCALES:
|
||||
msg = ("The use of the language code %r is deprecated. "
|
||||
"Please use the %r translation instead.")
|
||||
msg = ("The use of the language code '%s' is deprecated. "
|
||||
"Please use the '%s' translation instead.")
|
||||
warnings.warn(msg % (language, _DEPRECATED_LOCALES[language]),
|
||||
PendingDeprecationWarning, stacklevel=2)
|
||||
_active.value = translation(language)
|
||||
|
||||
Reference in New Issue
Block a user