diff options
Diffstat (limited to 'lldb')
| -rwxr-xr-x | lldb/examples/python/crashlog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/examples/python/crashlog.py b/lldb/examples/python/crashlog.py index ab8f52fecee..2519dc11e5c 100755 --- a/lldb/examples/python/crashlog.py +++ b/lldb/examples/python/crashlog.py @@ -257,7 +257,7 @@ class CrashLog(symbolication.Symbolicator): def find_matching_slice(self): dwarfdump_cmd_output = subprocess.check_output( - 'dwarfdump --uuid "%s"' % self.path, shell=True) + 'dwarfdump --uuid "%s"' % self.path, shell=True).decode("utf-8") self_uuid = self.get_uuid() for line in dwarfdump_cmd_output.splitlines(): match = self.dwarfdump_uuid_regex.search(line) |

