]> code.ossystems Code Review - openembedded-core.git/commitdiff
utils: fix typo in error message
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 17 Dec 2010 20:18:00 +0000 (21:18 +0100)
committerRichard Purdie <rpurdie@linux.intel.com>
Tue, 4 Jan 2011 14:46:53 +0000 (14:46 +0000)
(Bitbake rev: 99cdb61b30d0c75c8f831c78346cc9f8ca7945dd)

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
bitbake/lib/bb/utils.py

index 54b1db9dd3b54a480a5b1af37779afd0cab708ae..3018f3e5d52ca9f205803f331a1f9beddd8ab4ca 100644 (file)
@@ -370,7 +370,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)