diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-10-17 18:02:32 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-10-17 18:05:31 +0900 |
commit | 24efda780d0843591ac592ebfc7b028f5dccf557 (patch) | |
tree | 79ea4592d1244204df9ac6d394df16ab073f02e7 /buildstream/_options | |
parent | d54ddb790c01b7396bc0fd7baae8fbe5cc64586a (diff) | |
download | buildstream-24efda780d0843591ac592ebfc7b028f5dccf557.tar.gz |
_options/optionpool.py: Use _yaml.composite() instead of _yaml.composite_dict()
We want the one which provides a nice LoadError
Diffstat (limited to 'buildstream/_options')
-rw-r--r-- | buildstream/_options/optionpool.py | 2 |
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 |