mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix #2208 : Win32 Open Folder not working with non-ascii paths
This commit is contained in:
parent
88223fc058
commit
b8deea5c76
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ def open_file(path):
|
|||
|
||||
"""
|
||||
if windows_check():
|
||||
os.startfile("%s" % path)
|
||||
os.startfile(path.decode("utf8"))
|
||||
elif osx_check():
|
||||
subprocess.Popen(["open", "%s" % path])
|
||||
else:
|
||||
|
|
Loading…
Add table
Reference in a new issue