diff options
Diffstat (limited to 'bitbake/lib/bb/utils.py')
-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 ed19825faf..0618e46fe6 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
@@ -394,7 +394,7 @@ def better_exec(code, context, text = None, realfile = "<code>", pythonexception | |||
394 | code = better_compile(code, realfile, realfile) | 394 | code = better_compile(code, realfile, realfile) |
395 | try: | 395 | try: |
396 | exec(code, get_context(), context) | 396 | exec(code, get_context(), context) |
397 | except (bb.BBHandledException, bb.parse.SkipRecipe, bb.build.FuncFailed, bb.data_smart.ExpansionError): | 397 | except (bb.BBHandledException, bb.parse.SkipRecipe, bb.data_smart.ExpansionError): |
398 | # Error already shown so passthrough, no need for traceback | 398 | # Error already shown so passthrough, no need for traceback |
399 | raise | 399 | raise |
400 | except Exception as e: | 400 | except Exception as e: |