Commit bdca4944 authored by Baptiste Mispelon's avatar Baptiste Mispelon
Browse files

Fixed python3 breakage introduced by c0a2388a.

parent da235c9a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -202,7 +202,7 @@ def activate(language):
    language and installs it as the current translation object for the current
    thread.
    """
    if isinstance(language, basestring):
    if isinstance(language, six.string_types):
        if language == 'zh-cn':
            warnings.warn(
                "The use of the language code 'zh-cn' is deprecated. "