summaryrefslogtreecommitdiffstats
path: root/lib/bb/runqueue.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-21 14:40:21 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-22 13:06:20 +0000
commit78c02276c7d445403af285f8870a7a2d5a8f4a4b (patch)
tree90ef5d6fc825e32e3cce1d3f97124c749dfd6eb7 /lib/bb/runqueue.py
parent94c97534adef000559fd97aa51da6a7f35840bbd (diff)
downloadbitbake-78c02276c7d445403af285f8870a7a2d5a8f4a4b.tar.gz
bitbake/runqueue.py: Sort the list of skipped tasks as it makes searching the list easier when debugging
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/runqueue.py')
-rw-r--r--lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 69a703d15..6cc6ab26d 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -1635,7 +1635,7 @@ class RunQueueExecuteScenequeue(RunQueueExecute):
for task in oldcovered:
self.rq.scenequeue_covered.add(self.rqdata.runq_setscene[task])
- logger.debug(1, 'We can skip tasks %s', self.rq.scenequeue_covered)
+ logger.debug(1, 'We can skip tasks %s', sorted(self.rq.scenequeue_covered))
self.rq.state = runQueueRunInit
return True