diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2022-08-12 08:01:56 +0200 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2022-08-12 08:01:56 +0200 |
commit | 4a3cb1447351c2e915f2beb8c34780d2c6fe3e43 (patch) | |
tree | 5ad29ede8f2a1974b3c0310b7329378cc22d9f51 | |
parent | 1b06b668c9f0c42927a427f9c9057711a4adafe4 (diff) |
Fix jumbled error output when using Windows spawn fix
-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() |