From ed80ed94370bc6a1a45910815a8c2f5fe0692ffc Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 13 Apr 2018 19:04:53 +0200 Subject: [PATCH] Use the correct parameter name for creation flags --- jedi/_compatibility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jedi/_compatibility.py b/jedi/_compatibility.py index 20c58d0e..573b90bd 100644 --- a/jedi/_compatibility.py +++ b/jedi/_compatibility.py @@ -508,4 +508,4 @@ class GeneralizedPopen(subprocess.Popen): creation_flags = 0 if os.name == 'nt': creation_flags = subprocess.CREATE_NO_WINDOW - super(GeneralizedPopen, self).__init__(*args, creation_flags=creation_flags, **kwargs) + super(GeneralizedPopen, self).__init__(*args, creationflags=creation_flags, **kwargs)