fixed syntax error

again...
This commit is contained in:
tassaron 2017-07-05 06:45:30 -04:00
parent 52f0f96f16
commit 3f7ead0d1f
1 changed files with 2 additions and 2 deletions

View File

@ -35,13 +35,13 @@ def hideCmdWin(func):
''' Stops CMD window from appearing on Windows.
Adapted from here: http://code.activestate.com/recipes/409002/
'''
def decorator(func, commandList, **kwargs):
def decorator(commandList, **kwargs):
if sys.platform == 'win32':
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
kwargs['startupinfo'] = startupinfo
return func(commandList, **kwargs)
return func
return decorator
@hideCmdWin