diff options
-rw-r--r-- | bitbake/lib/bb/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 1a51589704..cd442dcd0d 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
@@ -401,7 +401,7 @@ def better_exec(code, context, text = None, realfile = "<code>", pythonexception | |||
401 | code = better_compile(code, realfile, realfile) | 401 | code = better_compile(code, realfile, realfile) |
402 | try: | 402 | try: |
403 | exec(code, get_context(), context) | 403 | exec(code, get_context(), context) |
404 | except (bb.BBHandledException, bb.parse.SkipRecipe, bb.data_smart.ExpansionError): | 404 | except (bb.BBHandledException, bb.parse.SkipRecipe, bb.data_smart.ExpansionError, bb.process.ExecutionError): |
405 | # Error already shown so passthrough, no need for traceback | 405 | # Error already shown so passthrough, no need for traceback |
406 | raise | 406 | raise |
407 | except Exception as e: | 407 | except Exception as e: |