1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Fix jumbled error output when using Windows spawn fix

(cherry picked from commit 4a3cb14473)
This commit is contained in:
Pedro J. Estébanez
2022-08-12 08:01:56 +02:00
committed by Rémi Verschelde
parent fc01ed9dbb
commit cbe542f96a

View File

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