summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/data_smart.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py
index 2a61386d89..25c412c1ad 100644
--- a/bitbake/lib/bb/data_smart.py
+++ b/bitbake/lib/bb/data_smart.py
@@ -397,8 +397,7 @@ class DataSmart(MutableMapping):
397 except bb.parse.SkipRecipe: 397 except bb.parse.SkipRecipe:
398 raise 398 raise
399 except Exception as exc: 399 except Exception as exc:
400 exc_class, exc, tb = sys.exc_info() 400 raise ExpansionError(varname, s, exc) from exc
401 raise ExpansionError, ExpansionError(varname, s, exc), tb
402 401
403 varparse.value = s 402 varparse.value = s
404 403