Skip to content

Commit d79951f

Browse files
committed
Must pass creationflags as a keywork
1 parent 0d93908 commit d79951f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: git/cmd.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ def _kill_process(pid):
642642
else:
643643
creationflags = None
644644

645-
p = Popen(['ps', '--ppid', str(pid)], stdout=PIPE, creationflags)
645+
p = Popen(['ps', '--ppid', str(pid)], stdout=PIPE, creationflags=creationflags)
646646
child_pids = []
647647
for line in p.stdout:
648648
if len(line.split()) > 0:

0 commit comments

Comments
 (0)