summaryrefslogtreecommitdiffstats
path: root/lib/bb/ui/buildinfohelper.py
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2013-11-19 10:53:39 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-20 14:06:42 +0000
commit67b752993a2c64cba9ccc4fa662f0bddf081e74a (patch)
treeeca576fac850495e27b518c433750dfbdd5db10f /lib/bb/ui/buildinfohelper.py
parent9a658e8b1511f1b9f91663f546f748fdfbc8965f (diff)
downloadbitbake-contrib-67b752993a2c64cba9ccc4fa662f0bddf081e74a.tar.gz
toasterui: fix typo
A typo in buildinfo helper leads to a bug where information about tasks is not correctly stored. This patch fixes the typo. Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/ui/buildinfohelper.py')
-rw-r--r--lib/bb/ui/buildinfohelper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/ui/buildinfohelper.py b/lib/bb/ui/buildinfohelper.py
index 170ee12a7..2c9d77abb 100644
--- a/lib/bb/ui/buildinfohelper.py
+++ b/lib/bb/ui/buildinfohelper.py
@@ -543,7 +543,7 @@ class BuildInfoHelper(object):
task_information['disk_io'] = task_build_stats['disk_io']
del self.internal_state[identifier]
- if isinstance(event, (bb.runqueue.runQueueTaskFailed, bb.runCommand.sceneQueueTaskFailed)):
+ if isinstance(event, (bb.runqueue.runQueueTaskFailed, bb.runqueue.sceneQueueTaskFailed)):
task_information['outcome'] = Task.OUTCOME_FAILED
del self.internal_state[identifier]