[LLDB] More Windows non-English locales fixes

This is a follow-up for https://reviews.llvm.org/D88975
This commit is contained in:
Alexandre Ganea 2020-10-08 17:20:40 -04:00
parent d9f064dc0b
commit 97e7fbb343
1 changed files with 1 additions and 1 deletions

View File

@ -516,7 +516,7 @@ def system(commands, **kwargs):
"command": shellCommand "command": shellCommand
} }
raise cpe raise cpe
output = output + this_output.decode("utf-8") output = output + this_output.decode("utf-8", errors='ignore')
return output return output