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