From: Bernhard Reutner-Fischer Date: Fri, 17 Dec 2010 20:18:00 +0000 (+0100) Subject: utils: fix typo in error message X-Git-Tag: 2011-1~3055 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=e890b86ebd5cbd4934256155e7dace4448813507;p=openembedded-core.git utils: fix typo in error message (Bitbake rev: 99cdb61b30d0c75c8f831c78346cc9f8ca7945dd) Signed-off-by: Bernhard Reutner-Fischer Signed-off-by: Richard Purdie --- 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 = ""): 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)