summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-12-17 21:18:00 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-12-17 21:18:00 +0100
commit99cdb61b30d0c75c8f831c78346cc9f8ca7945dd (patch)
tree1dedd5193dfc47035f019e1bf9ea52e1d3b1437a
parent447c87f006806b9f3d5a1304960969d6bfb1a906 (diff)
downloadbitbake-99cdb61b30d0c75c8f831c78346cc9f8ca7945dd.tar.gz
utils: fix typo in error message
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r--lib/bb/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/utils.py b/lib/bb/utils.py
index 986f94f3f..92ec43333 100644
--- a/lib/bb/utils.py
+++ b/lib/bb/utils.py
@@ -355,7 +355,7 @@ def better_exec(code, context, text, realfile = "<code>"):
tbextract = traceback.extract_tb(tb)
tbformat = "\n".join(traceback.format_list(tbextract))
- logger.error("The stack trace of python calls that resulted in thie exception/failure was:")
+ logger.error("The stack trace of python calls that resulted in this exception/failure was:")
for line in tbformat.split('\n'):
logger.error(line)