1
0
Fork 0

Merge pull request #64306 from RandomShaper/win_spawn_text

Fix jumbled error output when using Windows spawn fix
This commit is contained in:
Clay John 2022-08-12 09:52:12 -06:00 committed by GitHub
commit 22bb15cde5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -420,6 +420,7 @@ def use_windows_spawn_fix(self, platform=None):
startupinfo=startupinfo,
shell=False,
env=env,
text=True,
)
_, err = proc.communicate()
rv = proc.wait()