We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8814e9 commit af1e1baCopy full SHA for af1e1ba
1 file changed
Source/util/resource.py
@@ -16,7 +16,7 @@
16
def convert_to_winepath(path: str) -> str:
17
if shutil.which('winepath') is None:
18
return path
19
- return subprocess.check_output(["winepath", path], text=True).strip()
+ return subprocess.check_output(['winepath', '-w', path], text=True).strip()
20
21
22
@functools.cache
0 commit comments