summaryrefslogtreecommitdiffstats
path: root/methods.py
diff options
context:
space:
mode:
authorClay John <claynjohn@gmail.com>2022-08-12 09:52:12 -0600
committerGitHub <noreply@github.com>2022-08-12 09:52:12 -0600
commit22bb15cde52b2b0623907c889be2c71227d0258e (patch)
treeb59786d1f31492bb374c232908f801635c2ae765 /methods.py
parent29492f90843c29e2f258d0167199592c2045f5e4 (diff)
parent4a3cb1447351c2e915f2beb8c34780d2c6fe3e43 (diff)
downloadredot-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.py1
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()