diff options
| -rw-r--r-- | bitbake/lib/bb/ui/crumbs/runningbuild.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bitbake/lib/bb/ui/crumbs/runningbuild.py b/bitbake/lib/bb/ui/crumbs/runningbuild.py index 401559255b..18afd6674d 100644 --- a/bitbake/lib/bb/ui/crumbs/runningbuild.py +++ b/bitbake/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] | 
