Skip to content

Commit 943ef86

Browse files
authored
Merge pull request #4325 from theotherjimmy/fix-unicode
Decode STDERR from compiler
2 parents 8f29517 + 4ed87e2 commit 943ef86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/toolchains/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ def parse_output(self, output):
958958

959959
def compile_output(self, output=[]):
960960
_rc = output[0]
961-
_stderr = output[1]
961+
_stderr = output[1].decode("utf-8")
962962
command = output[2]
963963

964964
# Parse output for Warnings and Errors

0 commit comments

Comments
 (0)