mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-24 02:11:06 +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):
|
||||
"""Opens a file or folder."""
|
||||
if windows_check():
|
||||
os.startfile("'%s'" % path)
|
||||
os.startfile("%s" % path)
|
||||
else:
|
||||
subprocess.Popen(["xdg-open", "%s" % path])
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user