summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/utils.py
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-12-17 21:18:00 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2011-01-04 14:46:53 +0000
commite890b86ebd5cbd4934256155e7dace4448813507 (patch)
tree229efaacb8c7a92cbf71f32f818e8bfedc4d0268 /bitbake/lib/bb/utils.py
parentd951aa40a04caec7303c37641e4ea1f9c47e8893 (diff)
downloadpoky-e890b86ebd5cbd4934256155e7dace4448813507.tar.gz
utils: fix typo in error message
(Bitbake rev: 99cdb61b30d0c75c8f831c78346cc9f8ca7945dd) Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/utils.py')
-rw-r--r--bitbake/lib/bb/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index 54b1db9dd3..3018f3e5d5 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -370,7 +370,7 @@ def better_exec(code, context, text, realfile = "<code>"):
370 370
371 tbextract = traceback.extract_tb(tb) 371 tbextract = traceback.extract_tb(tb)
372 tbformat = "\n".join(traceback.format_list(tbextract)) 372 tbformat = "\n".join(traceback.format_list(tbextract))
373 logger.error("The stack trace of python calls that resulted in thie exception/failure was:") 373 logger.error("The stack trace of python calls that resulted in this exception/failure was:")
374 for line in tbformat.split('\n'): 374 for line in tbformat.split('\n'):
375 logger.error(line) 375 logger.error(line)
376 376