From 3f7ead0d1f6be4f6b688cd05e75b69b61b15f861 Mon Sep 17 00:00:00 2001 From: tassaron Date: Wed, 5 Jul 2017 06:45:30 -0400 Subject: [PATCH] fixed syntax error again... --- src/toolkit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/toolkit.py b/src/toolkit.py index 5cfd5ee..798a5b5 100644 --- a/src/toolkit.py +++ b/src/toolkit.py @@ -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