diff options
Diffstat (limited to 'src/buildstream/source.py')
-rw-r--r-- | src/buildstream/source.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildstream/source.py b/src/buildstream/source.py index 1fb318b52..7fc2e9fc0 100644 --- a/src/buildstream/source.py +++ b/src/buildstream/source.py @@ -918,8 +918,8 @@ class Source(Plugin): # Step 2 - Set the ref in memory, and determine changed state # # TODO: we are working on dictionaries here, would be nicer to just work on the nodes themselves - clean = node._strip_node_info() - to_modify = node._strip_node_info() + clean = node.strip_node_info() + to_modify = node.strip_node_info() current_ref = self.get_ref() # pylint: disable=assignment-from-no-return |