diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-03-23 20:24:32 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-25 17:25:49 +0000 |
commit | b5f8ce02b73f3b9e3ac95808c8369d85a88dfa7a (patch) | |
tree | 713ad8aeb12e9c5ce33535e00b1123105f88139f /bitbake | |
parent | c24424327409544807a781bba4e6f9a8e178dcce (diff) | |
download | poky-b5f8ce02b73f3b9e3ac95808c8369d85a88dfa7a.tar.gz |
crumbs: fix hassattr typo
(Bitbake rev: 5593de13a18792e36d15dfd2a9579b36284e4d67)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-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): | |||
61 | # If we have a pid attached to this message/event try and get the | 61 | # If we have a pid attached to this message/event try and get the |
62 | # (package, task) pair for it. If we get that then get the parent iter | 62 | # (package, task) pair for it. If we get that then get the parent iter |
63 | # for the message. | 63 | # for the message. |
64 | if hassattr(event, 'pid'): | 64 | if hasattr(event, 'pid'): |
65 | pid = event.pid | 65 | pid = event.pid |
66 | if self.pids_to_task.has_key(pid): | 66 | if self.pids_to_task.has_key(pid): |
67 | (package, task) = self.pids_to_task[pid] | 67 | (package, task) = self.pids_to_task[pid] |