From 035c673c463ca450245acf824e7b7e8f889bdc89 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 24 Nov 2011 14:14:55 +0000 Subject: [PATCH] runqueue.py: Fix debug message to reference the correct task Signed-off-by: Richard Purdie --- lib/bb/runqueue.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py index f5598ca2..1800634a 100644 --- a/lib/bb/runqueue.py +++ b/lib/bb/runqueue.py @@ -1524,8 +1524,9 @@ class RunQueueExecuteScenequeue(RunQueueExecute): for task in xrange(len(self.sq_revdeps)): if task not in valid_new and task not in noexec: + realtask = self.rqdata.runq_setscene[task] logger.debug(2, 'No package found, so skipping setscene task %s', - self.rqdata.get_user_idstring(task)) + self.rqdata.get_user_idstring(realtask)) self.task_failoutright(task) logger.info('Executing SetScene Tasks') -- 2.20.1