This commit is contained in:
Jesús 2020-12-18 11:39:39 -05:00
parent a7c1f2a34e
commit 0692780137
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -63,7 +63,7 @@ def wine_run_shell(command):
def wine_run(command_parts):
if os.name == 'posix':
command_parts = ['wine',] + command_parts
command_parts = ['wine', ] + command_parts
if subprocess.run(command_parts).returncode != 0:
raise Exception('Got nonzero exit code from command')