Kaydet (Commit) c1a9cab8 authored tarafından Just van Rossum's avatar Just van Rossum

interpret utf-8 file names on OSX

üst f07518ac
......@@ -293,6 +293,8 @@ class Application(FrameWork.Application):
if done.has_key(path):
continue
name = string.strip(name)
if os.name == "posix":
name = unicode(name, "utf-8")
if name[-3:] == '---':
menu.addseparator()
elif isdir:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment