mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-13 04:54:23 +00:00
fix open folder/file in windows
This commit is contained in:
parent
dbdc72913c
commit
0f1f5529ba
@ -141,7 +141,7 @@ def get_logo(size):
|
|||||||
def open_file(path):
|
def open_file(path):
|
||||||
"""Opens a file or folder."""
|
"""Opens a file or folder."""
|
||||||
if windows_check():
|
if windows_check():
|
||||||
os.startfile("'%s'" % path)
|
os.startfile("%s" % path)
|
||||||
else:
|
else:
|
||||||
subprocess.Popen(["xdg-open", "%s" % path])
|
subprocess.Popen(["xdg-open", "%s" % path])
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user