summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/data_smart.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-12 08:22:52 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-02 08:24:02 +0100
commita15e538d5009dfcb20a16a861c2aacd134e38593 (patch)
tree7adfcd0d5e6c72bf80386b647ebbbdfcdaad4984 /bitbake/lib/bb/data_smart.py
parent0f2c59367a649de5f57acdccfb4f1fdba9cde730 (diff)
downloadpoky-a15e538d5009dfcb20a16a861c2aacd134e38593.tar.gz
bitbake: data_smart: Simplify ExpansionError exception
This seemingly convoluted syntax doesn't work in python3. Instead use the chained exception handling syntax which appears to make more sense here. (Bitbake rev: b19a4c5166303b1fa680582adf63e6a5564bfb4c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/data_smart.py')
-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