Fixed a global reference that should have been
a reference to a class variable.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@148562 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/examples/python/crashlog.py b/examples/python/crashlog.py
index 75519aa..feba1c4 100755
--- a/examples/python/crashlog.py
+++ b/examples/python/crashlog.py
@@ -385,7 +385,7 @@
return None # success
# We weren't able to open the main executable as, but we can still symbolicate
if self.idents:
- for ident in idents:
+ for ident in self.idents:
image = self.find_image_with_identifier (ident)
if image:
err = image.create_target ()