diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-12-17 22:56:08 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2011-01-04 14:46:53 +0000 |
commit | 4d4d1355d0b2094712b7fc86a984b821efa3cbb9 (patch) | |
tree | a6b9fe97ba60bfe49517e7484ad7f0ae7cc19f82 /bitbake | |
parent | 4a6d4d258c0a7210462be8cd025475cfe9bf8d84 (diff) | |
download | poky-4d4d1355d0b2094712b7fc86a984b821efa3cbb9.tar.gz |
runqueue: use fewer newlines in error path
(Bitbake rev: 7498466f0e42beea6f5f411209a892b636c7783c)
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index dd568ffab2..1475b51c03 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -366,8 +366,8 @@ class RunQueueData: | |||
366 | for task in xrange(numTasks): | 366 | for task in xrange(numTasks): |
367 | if task_done[task] is False or deps_left[task] != 0: | 367 | if task_done[task] is False or deps_left[task] != 0: |
368 | problem_tasks.append(task) | 368 | problem_tasks.append(task) |
369 | logger.debug(2, "Task %s (%s) is not buildable\n", task, self.get_user_idstring(task)) | 369 | logger.debug(2, "Task %s (%s) is not buildable", task, self.get_user_idstring(task)) |
370 | logger.debug(2, "(Complete marker was %s and the remaining dependency count was %s)\n\n", task_done[task], deps_left[task]) | 370 | logger.debug(2, "(Complete marker was %s and the remaining dependency count was %s)\n", task_done[task], deps_left[task]) |
371 | 371 | ||
372 | if problem_tasks: | 372 | if problem_tasks: |
373 | message = "Unbuildable tasks were found.\n" | 373 | message = "Unbuildable tasks were found.\n" |