We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 51be4a8 + 16eeacd commit 17422e8Copy full SHA for 17422e8
1 file changed
meld/melddoc.py
@@ -16,6 +16,7 @@
16
17
import enum
18
import logging
19
+import os
20
import pipes
21
import shlex
22
import string
@@ -127,7 +128,7 @@ def os_open(path: str, uri: str):
127
128
if not path:
129
return
130
if sys.platform == "win32":
- subprocess.Popen(["start", path], shell=True)
131
+ os.startfile(path)
132
elif sys.platform == "darwin":
133
subprocess.Popen(["open", path])
134
else:
0 commit comments