Issue 4291, wrong path when cancel.

svn: r15975
This commit is contained in:
Peter Landgren
2010-10-13 08:45:23 +00:00
parent af788956aa
commit d3993f57ff

View File

@ -333,8 +333,8 @@ def get_unicode_path_from_file_chooser(path):
:rtype: unicode
:returns: The Unicode version of path.
"""
# Don't make unicode of unicode
if isinstance(path, unicode):
# make omly unicode of path of type 'str'
if not (isinstance(path, str)):
return path
if constfunc.win():
@ -360,7 +360,8 @@ def get_unicode_path_from_env_var(path):
:rtype: unicode
:returns: The Unicode version of path.
"""
if isinstance(path, unicode):
# make omly unicode of path of type 'str'
if not (isinstance(path, str)):
return path
if constfunc.win():