Fixed a global reference that should have been
a reference to a class variable.

llvm-svn: 148562
diff --git a/lldb/examples/python/crashlog.py b/lldb/examples/python/crashlog.py
index 75519aa..feba1c4 100755
--- a/lldb/examples/python/crashlog.py
+++ b/lldb/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 ()