Fix python2 breakage caused by e5e044da87.

This commit is contained in:
Baptiste Mispelon 2013-11-05 19:51:54 +01:00
parent e5e044da87
commit 79716dcca8
1 changed files with 2 additions and 2 deletions

View File

@ -209,8 +209,8 @@ def activate(language):
thread. thread.
""" """
if language in _DEPRECATED_LOCALES: if language in _DEPRECATED_LOCALES:
msg = ("The use of the language code %r is deprecated. " msg = ("The use of the language code '%s' is deprecated. "
"Please use the %r translation instead.") "Please use the '%s' translation instead.")
warnings.warn(msg % (language, _DEPRECATED_LOCALES[language]), warnings.warn(msg % (language, _DEPRECATED_LOCALES[language]),
PendingDeprecationWarning, stacklevel=2) PendingDeprecationWarning, stacklevel=2)
_active.value = translation(language) _active.value = translation(language)