1
0
mirror of https://github.com/lutris/lutris synced 2024-07-08 11:35:50 +00:00

Same thing but done right...

This commit is contained in:
Xodetaetl 2015-03-16 21:50:49 +01:00
parent 18563d205b
commit 6424c883af

View File

@ -107,7 +107,7 @@ def winetricks(app, prefix=None, winetricks_env=None, silent=True):
arch = detect_prefix_arch(prefix) or 'win32'
if not winetricks_env:
winetricks_env = wine().get_executable()
if str(silent).lower() in ('no', 'off', 'false'):
if str(silent).lower() in ('yes', 'on', 'true'):
args = "-q " + app
else:
args = app