Skip to content

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
@@ -300,7 +300,7 @@ def locate_module_and_debug_symbols(self):
300300
if os.path.exists(self.dsymForUUIDBinary):
301301
dsym_for_uuid_command = '%s %s' % (
302302
self.dsymForUUIDBinary, uuid_str)
303-
s = subprocess.check_output(dsym_for_uuid_command, shell=True).decode("utf-8")
303+
s = subprocess.check_output(dsym_for_uuid_command, shell=True)
304304
if s:
305305
try:
306306
plist_root = read_plist(s)

0 commit comments

Comments
 (0)
Please sign in to comment.