fix subprocess on Windows (#391)
This commit is contained in:
parent
afbb5d1cbd
commit
cb90f26122
|
@ -988,7 +988,7 @@ class Popen(object):
|
|||
int(not close_fds),
|
||||
creationflags,
|
||||
env,
|
||||
os.fspath(cwd),
|
||||
os.fspath(cwd) if cwd is not None else None,
|
||||
startupinfo)
|
||||
finally:
|
||||
# Child is launched. Close the parent's copy of those pipe
|
||||
|
|
Loading…
Reference in New Issue