From 4a3cb1447351c2e915f2beb8c34780d2c6fe3e43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20J=2E=20Est=C3=A9banez?= Date: Fri, 12 Aug 2022 08:01:56 +0200 Subject: [PATCH] Fix jumbled error output when using Windows spawn fix --- methods.py | 1 + 1 file changed, 1 insertion(+) diff --git a/methods.py b/methods.py index 82c19f09e31..ba7474ea028 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()