One last syntax error fix

git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@153911 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/examples/summaries/cocoa/NSBundle.py b/examples/summaries/cocoa/NSBundle.py
index 1fd9786..6ad7cc3 100644
--- a/examples/summaries/cocoa/NSBundle.py
+++ b/examples/summaries/cocoa/NSBundle.py
@@ -53,7 +53,7 @@
 							self.sys_params.types_cache.NSString)
 		my_string = text.GetSummary()
 		if (my_string == None) or (my_string == ''):
-			statistics.metric_hit('unknown_class',str(valobj.GetName()) + " triggered unkown pointer location")
+			statistics.metric_hit('unknown_class',str(self.valobj.GetName()) + " triggered unkown pointer location")
 			return NSBundleUnknown_SummaryProvider(self.valobj, self.sys_params).url_text()
 		else:
 			statistics.metric_hit('code_notrun',self.valobj)