summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-10-17 18:02:32 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-10-17 18:05:31 +0900
commit24efda780d0843591ac592ebfc7b028f5dccf557 (patch)
tree79ea4592d1244204df9ac6d394df16ab073f02e7
parentd54ddb790c01b7396bc0fd7baae8fbe5cc64586a (diff)
downloadbuildstream-24efda780d0843591ac592ebfc7b028f5dccf557.tar.gz
_options/optionpool.py: Use _yaml.composite() instead of _yaml.composite_dict()
We want the one which provides a nice LoadError
-rw-r--r--buildstream/_options/optionpool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_options/optionpool.py b/buildstream/_options/optionpool.py
index 22a846f8e..3400ca191 100644
--- a/buildstream/_options/optionpool.py
+++ b/buildstream/_options/optionpool.py
@@ -227,7 +227,7 @@ class OptionPool():
expression, value = tuples[0]
if self.evaluate(expression):
- _yaml.composite_dict(node, value)
+ _yaml.composite(node, value)
return True