0002246: Files with non-ascii characters can not be opened from the Media View

svn: r10900
This commit is contained in:
Brian Matherly 2008-07-22 02:24:45 +00:00
parent 365f78ac5f
commit c212664457

View File

@ -1095,6 +1095,11 @@ def launch(prog_str, path):
prog_str = prog_str.replace("%1", path)
else:
prog_str = '%s "%s"' % (prog_str, path)
# The string must be encoded using the filesystem encoding on Windows.
# Otherwise, files with non-ascii characters in their names will not
# open.
prog_str = prog_str.encode(sys.getfilesystemencoding())
subprocess.Popen(prog_str)
else: