From 43ab9563e201722cd3d8d92c864e5fcdb845d744 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sat, 14 Apr 2018 11:06:24 +0200 Subject: [PATCH] For the second time in a row it's called creationflags not creation_flags --- jedi/_compatibility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jedi/_compatibility.py b/jedi/_compatibility.py index dfae5158..334925e0 100644 --- a/jedi/_compatibility.py +++ b/jedi/_compatibility.py @@ -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)