summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/data_smart.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/data_smart.py')
-rw-r--r--bitbake/lib/bb/data_smart.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py
index 515d195fe8..e4afac64b2 100644
--- a/bitbake/lib/bb/data_smart.py
+++ b/bitbake/lib/bb/data_smart.py
@@ -418,6 +418,8 @@ class DataSmart(MutableMapping):
418 raise 418 raise
419 except bb.parse.SkipRecipe: 419 except bb.parse.SkipRecipe:
420 raise 420 raise
421 except bb.BBHandledException:
422 raise
421 except Exception as exc: 423 except Exception as exc:
422 tb = sys.exc_info()[2] 424 tb = sys.exc_info()[2]
423 raise ExpansionError(varname, s, exc).with_traceback(tb) from exc 425 raise ExpansionError(varname, s, exc).with_traceback(tb) from exc