Skip to content

Commit af1e1ba

Browse files
committed
2026-06-28T0556Z
1 parent c8814e9 commit af1e1ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/util/resource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
def convert_to_winepath(path: str) -> str:
1717
if shutil.which('winepath') is None:
1818
return path
19-
return subprocess.check_output(["winepath", path], text=True).strip()
19+
return subprocess.check_output(['winepath', '-w', path], text=True).strip()
2020

2121

2222
@functools.cache

0 commit comments

Comments
 (0)