summaryrefslogtreecommitdiff
path: root/src/buildstream/_projectrefs.py
diff options
context:
space:
mode:
authorBenjamin Schubert <ben.c.schubert@gmail.com>2019-07-02 16:50:35 +0100
committerBenjamin Schubert <ben.c.schubert@gmail.com>2019-07-02 16:50:35 +0100
commit17a53d990a606c786c830b46cb93a2a7e093ec4e (patch)
tree8c48d0e6fea1c78b272bb0bcca676c0db2065473 /src/buildstream/_projectrefs.py
parentbcbff34e7138021b0887dc1865f9f16252e18b48 (diff)
downloadbuildstream-17a53d990a606c786c830b46cb93a2a7e093ec4e.tar.gz
_yaml: Move 'node_final_assertions' to 'Node._assert_fully_composited'bschubert/node-api-noassertions
Diffstat (limited to 'src/buildstream/_projectrefs.py')
-rw-r--r--src/buildstream/_projectrefs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/_projectrefs.py b/src/buildstream/_projectrefs.py
index f1796a16d..d10456b14 100644
--- a/src/buildstream/_projectrefs.py
+++ b/src/buildstream/_projectrefs.py
@@ -71,7 +71,7 @@ class ProjectRefs():
# Run any final assertions on the project.refs, just incase there
# are list composition directives or anything left unprocessed.
- _yaml.node_final_assertions(self._toplevel_node)
+ self._toplevel_node._assert_fully_composited()
except LoadError as e:
if e.reason != LoadErrorReason.MISSING_FILE: