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 ead5f366b0..c179394dc9 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -362,7 +362,7 @@ def better_exec(code, context, text = None, realfile = "<code>"):
362 except Exception as e: 362 except Exception as e:
363 (t, value, tb) = sys.exc_info() 363 (t, value, tb) = sys.exc_info()
364 364
365 if t in [bb.parse.SkipPackage, bb.build.FuncFailed]: 365 if t in [bb.parse.SkipRecipe, bb.build.FuncFailed]:
366 raise 366 raise
367 try: 367 try:
368 _print_exception(t, value, tb, realfile, text, context) 368 _print_exception(t, value, tb, realfile, text, context)