From d0072fc1391eda890268a91d692075b876f85914 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 17 Oct 2013 10:48:09 +0000 Subject: bitbake: utils: Don't show stack traces for BBHandledException A BBHandledException means we already showed an error to the user so we shouldn't show a stack trace as this just confuses things further. (Bitbake rev: 8a8bafc8ded98364a31878b23c64503a53affcd1) Signed-off-by: Richard Purdie --- bitbake/lib/bb/utils.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bitbake') diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index f9ee4f1c1d..560f55a074 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py @@ -354,6 +354,9 @@ def better_exec(code, context, text = None, realfile = ""): code = better_compile(code, realfile, realfile) try: exec(code, get_context(), context) + except bb.BBHandledException: + # Error already shown so passthrough + raise except Exception as e: (t, value, tb) = sys.exc_info() -- cgit v1.2.3-54-g00ecf