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 fb8d9d53c0..d328400903 100644
--- a/bitbake/lib/bb/data_smart.py
+++ b/bitbake/lib/bb/data_smart.py
@@ -143,6 +143,8 @@ class DataSmart(MutableMapping):
143 break 143 break
144 except ExpansionError: 144 except ExpansionError:
145 raise 145 raise
146 except bb.parse.SkipPackage:
147 raise
146 except Exception as exc: 148 except Exception as exc:
147 raise ExpansionError(varname, s, exc) 149 raise ExpansionError(varname, s, exc)
148 150