]> code.ossystems Code Review - openembedded-core.git/commitdiff
crumbs: fix hassattr typo
authorChris Larson <chris_larson@mentor.com>
Wed, 24 Mar 2010 03:24:32 +0000 (20:24 -0700)
committerRichard Purdie <rpurdie@linux.intel.com>
Thu, 25 Mar 2010 17:25:49 +0000 (17:25 +0000)
(Bitbake rev: 5593de13a18792e36d15dfd2a9579b36284e4d67)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
bitbake/lib/bb/ui/crumbs/runningbuild.py

index 401559255b25e6d0cc73481fd43be1b9174c792b..18afd6674de17fdeda021aa84ff031f6dfa307f5 100644 (file)
@@ -61,7 +61,7 @@ class RunningBuild (gobject.GObject):
         # If we have a pid attached to this message/event try and get the
         # (package, task) pair for it. If we get that then get the parent iter
         # for the message.
-        if hassattr(event, 'pid'):
+        if hasattr(event, 'pid'):
             pid = event.pid
             if self.pids_to_task.has_key(pid):
                 (package, task) = self.pids_to_task[pid]