summaryrefslogtreecommitdiff
path: root/src/buildstream/source.py
diff options
context:
space:
mode:
authorBenjamin Schubert <ben.c.schubert@gmail.com>2019-07-02 16:06:45 +0100
committerBenjamin Schubert <ben.c.schubert@gmail.com>2019-07-03 16:18:30 +0100
commit35fad402ef5d75d25589fdfd6cddde0306c263aa (patch)
tree358dce8d3146891e18b0eda378ad56158416b393 /src/buildstream/source.py
parent382712aec8f6c0a1a820194ee6917b9f8195ab1f (diff)
downloadbuildstream-bschubert/new-node-compose.tar.gz
_yaml: Move 'node_composite' to a method on 'MappingNode'bschubert/new-node-compose
- Also take care of node_composite_move in the same way. - Adapt all calling places
Diffstat (limited to 'src/buildstream/source.py')
-rw-r--r--src/buildstream/source.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/source.py b/src/buildstream/source.py
index dfac3d4ec..7d27ac9a6 100644
--- a/src/buildstream/source.py
+++ b/src/buildstream/source.py
@@ -1291,7 +1291,7 @@ class Source(Plugin):
config = cls.__defaults.get_mapping('config', default={})
config = config.copy()
- _yaml.composite(config, meta.config)
+ meta.config.composite(config)
config._assert_fully_composited()
return config