Commit 79716dcc authored by Baptiste Mispelon's avatar Baptiste Mispelon
Browse files

Fix python2 breakage caused by e5e044da.

parent e5e044da
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)