summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-03-23 20:24:32 -0700
committerChris Larson <chris_larson@mentor.com>2010-03-23 20:33:35 -0700
commit5593de13a18792e36d15dfd2a9579b36284e4d67 (patch)
treed73d7d9f7322d27893221b642247fcf4f65aa201
parent4ee9a56e16f1eb3c1649eaa3127b09ab0e93d1ec (diff)
downloadbitbake-5593de13a18792e36d15dfd2a9579b36284e4d67.tar.gz
crumbs: fix hassattr typo
Signed-off-by: Chris Larson <chris_larson@mentor.com>
-rw-r--r--lib/bb/ui/crumbs/runningbuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/ui/crumbs/runningbuild.py b/lib/bb/ui/crumbs/runningbuild.py
index 401559255..18afd6674 100644
--- a/lib/bb/ui/crumbs/runningbuild.py
+++ b/lib/bb/ui/crumbs/runningbuild.py
@@ -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]