We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43ae5c5 commit 192dd7dCopy full SHA for 192dd7d
lldb/examples/python/crashlog.py
@@ -257,7 +257,7 @@ def __init__(
257
258
def find_matching_slice(self):
259
dwarfdump_cmd_output = subprocess.check_output(
260
- 'dwarfdump --uuid "%s"' % self.path, shell=True)
+ 'dwarfdump --uuid "%s"' % self.path, shell=True).decode("utf-8")
261
self_uuid = self.get_uuid()
262
for line in dwarfdump_cmd_output.splitlines():
263
match = self.dwarfdump_uuid_regex.search(line)
0 commit comments