Skip to content

Commit 833a174

Browse files
authored
[lldb/crashlog] Fix typo in error message when creating a target (#122514)
This fixes a typo when creating a target from the crashlog script and that we were not able to find a valid architecture from the crash report. rdar://137344016 Signed-off-by: Med Ismail Bennani <[email protected]>
1 parent 2e5c298 commit 833a174

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/examples/python/crashlog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1512,7 +1512,7 @@ def load_crashlog_in_scripted_process(debugger, crashlog_path, options, result):
15121512
arch = crashlog.process_arch
15131513
if not arch:
15141514
raise InteractiveCrashLogException(
1515-
"couldn't create find the architecture to create the target"
1515+
"couldn't find the architecture to create the target"
15161516
)
15171517
target = debugger.CreateTargetWithFileAndArch(None, arch)
15181518
# 4. Fail

0 commit comments

Comments
 (0)