We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a75b2e8 commit c77aefbCopy full SHA for c77aefb
lldb/test/Shell/ScriptInterpreter/Python/Crashlog/patch-crashlog.py
@@ -32,7 +32,7 @@ def patch_uuid(self):
32
def patch_addresses(self):
33
if not self.offsets:
34
return
35
- output = subprocess.check_output(['nm', self.binary])
+ output = subprocess.check_output(['nm', self.binary]).decode("utf-8")
36
for line in output.splitlines():
37
m = self.SYMBOL_REGEX.match(line)
38
if m:
0 commit comments