From 5593de13a18792e36d15dfd2a9579b36284e4d67 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Tue, 23 Mar 2010 20:24:32 -0700 Subject: crumbs: fix hassattr typo Signed-off-by: Chris Larson --- lib/bb/ui/crumbs/runningbuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] -- cgit 1.2.3-korg