Skip to content

Commit 192dd7d

Browse files
committed
[crashlog] Add a missing call to decode.
<rdar://problem/51139357> llvm-svn: 362044
1 parent 43ae5c5 commit 192dd7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/examples/python/crashlog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ def __init__(
257257

258258
def find_matching_slice(self):
259259
dwarfdump_cmd_output = subprocess.check_output(
260-
'dwarfdump --uuid "%s"' % self.path, shell=True)
260+
'dwarfdump --uuid "%s"' % self.path, shell=True).decode("utf-8")
261261
self_uuid = self.get_uuid()
262262
for line in dwarfdump_cmd_output.splitlines():
263263
match = self.dwarfdump_uuid_regex.search(line)

0 commit comments

Comments
 (0)