From 725fae65810c477882f7f9d02561362b3f603db0 Mon Sep 17 00:00:00 2001 From: Alexandru DAMIAN Date: Tue, 19 Nov 2013 10:53:39 +0000 Subject: [PATCH] bitbake: 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. (Bitbake rev: 67b752993a2c64cba9ccc4fa662f0bddf081e74a) Signed-off-by: Alexandru DAMIAN Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/buildinfohelper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py index 170ee12a7e..2c9d77abb3 100644 --- a/bitbake/lib/bb/ui/buildinfohelper.py +++ b/bitbake/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]