diff options
author | Clay John <claynjohn@gmail.com> | 2022-08-12 09:52:12 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-12 09:52:12 -0600 |
commit | 22bb15cde52b2b0623907c889be2c71227d0258e (patch) | |
tree | b59786d1f31492bb374c232908f801635c2ae765 /methods.py | |
parent | 29492f90843c29e2f258d0167199592c2045f5e4 (diff) | |
parent | 4a3cb1447351c2e915f2beb8c34780d2c6fe3e43 (diff) | |
download | redot-engine-22bb15cde52b2b0623907c889be2c71227d0258e.tar.gz |
Merge pull request #64306 from RandomShaper/win_spawn_text
Fix jumbled error output when using Windows spawn fix
Diffstat (limited to 'methods.py')
-rw-r--r-- | methods.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/methods.py b/methods.py index 82c19f09e3..ba7474ea02 100644 --- a/methods.py +++ b/methods.py @@ -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() |