mirror of
https://github.com/davidhalter/jedi.git
synced 2026-03-01 00:22:20 +08:00
For the second time in a row it's called creationflags not creation_flags
This commit is contained in:
@@ -511,5 +511,5 @@ class GeneralizedPopen(subprocess.Popen):
|
|||||||
CREATE_NO_WINDOW = subprocess.CREATE_NO_WINDOW
|
CREATE_NO_WINDOW = subprocess.CREATE_NO_WINDOW
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
CREATE_NO_WINDOW = 0x08000000
|
CREATE_NO_WINDOW = 0x08000000
|
||||||
kwargs['creation_flags'] = CREATE_NO_WINDOW
|
kwargs['creationflags'] = CREATE_NO_WINDOW
|
||||||
super(GeneralizedPopen, self).__init__(*args, **kwargs)
|
super(GeneralizedPopen, self).__init__(*args, **kwargs)
|
||||||
|
|||||||
Reference in New Issue
Block a user