summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-12-17 22:56:08 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-12-17 22:56:08 +0100
commit7498466f0e42beea6f5f411209a892b636c7783c (patch)
tree3efc7a26ad2a53052db6d2586dfe94c45a6d999f
parent976e4f84a8147ad762442df7ff4820611a21d227 (diff)
downloadbitbake-7498466f0e42beea6f5f411209a892b636c7783c.tar.gz
runqueue: use fewer newlines in error path
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r--lib/bb/runqueue.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 322be22ec..611901945 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -336,8 +336,8 @@ class RunQueueData:
for task in xrange(numTasks):
if task_done[task] is False or deps_left[task] != 0:
problem_tasks.append(task)
- logger.debug(2, "Task %s (%s) is not buildable\n", task, self.get_user_idstring(task))
- logger.debug(2, "(Complete marker was %s and the remaining dependency count was %s)\n\n", task_done[task], deps_left[task])
+ logger.debug(2, "Task %s (%s) is not buildable", task, self.get_user_idstring(task))
+ logger.debug(2, "(Complete marker was %s and the remaining dependency count was %s)\n", task_done[task], deps_left[task])
if problem_tasks:
message = "Unbuildable tasks were found.\n"