For the second time in a row it's called creationflags not creation_flags

This commit is contained in:
Dave Halter
2018-04-14 11:06:24 +02:00
parent db21942c61
commit 43ab9563e2

View File

@@ -511,5 +511,5 @@ class GeneralizedPopen(subprocess.Popen):
CREATE_NO_WINDOW = subprocess.CREATE_NO_WINDOW
except AttributeError:
CREATE_NO_WINDOW = 0x08000000
kwargs['creation_flags'] = CREATE_NO_WINDOW
kwargs['creationflags'] = CREATE_NO_WINDOW
super(GeneralizedPopen, self).__init__(*args, **kwargs)