Decode STDERR from compiler

pull/4325/head
Jimmy Brisson 2017-05-15 14:10:06 -05:00
parent 01f02b4b8c
commit 4ed87e2f3c
1 changed files with 1 additions and 1 deletions

View File

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