Merge pull request #4325 from theotherjimmy/fix-unicode

Decode STDERR from compiler
pull/4353/head
Sam Grove 2017-05-18 09:26:06 -05:00 committed by GitHub
commit 943ef8648b
1 changed files with 1 additions and 1 deletions

View File

@ -958,7 +958,7 @@ class mbedToolchain:
def compile_output(self, output=[]):
_rc = output[0]
_stderr = output[1]
_stderr = output[1].decode("utf-8")
command = output[2]
# Parse output for Warnings and Errors