fix error of revision 20699

svn: r21022
This commit is contained in:
Benny Malengier 2013-01-07 09:17:30 +00:00
parent d1765efa49
commit 4b6a95f211

View File

@ -261,7 +261,7 @@ def get_addon_translator(filename=None, domain="addon", languages=None):
path = os.path.dirname(os.path.abspath(filename)) path = os.path.dirname(os.path.abspath(filename))
# Check if path is of type str. Do import and conversion if so. # Check if path is of type str. Do import and conversion if so.
# The import cannot be done at the top as that will conflict with the translation system. # The import cannot be done at the top as that will conflict with the translation system.
if not isinstance(path, UNITYPE) == str: if not isinstance(path, UNITYPE):
from .file import get_unicode_path_from_env_var from .file import get_unicode_path_from_env_var
path = get_unicode_path_from_env_var(path) path = get_unicode_path_from_env_var(path)
if languages: if languages: