summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/build.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index 3e2a94edb1..7571421d71 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -304,9 +304,10 @@ def exec_func_python(func, d, runfile, cwd=None, pythonexception=False):
304 utils.better_exec(comp, {"d": d}, code, "exec_python_func() autogenerated", pythonexception=pythonexception) 304 utils.better_exec(comp, {"d": d}, code, "exec_python_func() autogenerated", pythonexception=pythonexception)
305 except (bb.parse.SkipRecipe, bb.build.FuncFailed): 305 except (bb.parse.SkipRecipe, bb.build.FuncFailed):
306 raise 306 raise
307 except: 307 except Exception as e:
308 if pythonexception: 308 if pythonexception:
309 raise 309 raise
310 logger.error(str(e))
310 raise FuncFailed(func, None) 311 raise FuncFailed(func, None)
311 finally: 312 finally:
312 bb.debug(2, "Python function %s finished" % func) 313 bb.debug(2, "Python function %s finished" % func)