summaryrefslogtreecommitdiff
path: root/src/buildstream/_workspaces.py
diff options
context:
space:
mode:
authorBenjamin Schubert <contact@benschubert.me>2019-10-15 14:17:19 +0100
committerBenjamin Schubert <contact@benschubert.me>2019-10-16 13:58:57 +0100
commit1a7582c45a9bd265b8da429fde145b115a50fac0 (patch)
tree9990eef5524a5640e027275e5735ca79600c8471 /src/buildstream/_workspaces.py
parentabc522cd6a292ef571cafb1b4d4288903690d730 (diff)
downloadbuildstream-1a7582c45a9bd265b8da429fde145b115a50fac0.tar.gz
node.pyx: Make 'strip_node_info' public
'strip_node_info' would be useful for multiple plugins. We should therefore allow users to use it.
Diffstat (limited to 'src/buildstream/_workspaces.py')
-rw-r--r--src/buildstream/_workspaces.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/_workspaces.py b/src/buildstream/_workspaces.py
index a16c840e5..f9023dc54 100644
--- a/src/buildstream/_workspaces.py
+++ b/src/buildstream/_workspaces.py
@@ -630,7 +630,7 @@ class Workspaces():
def _load_workspace(self, node):
running_files = node.get_mapping('running_files', default=None)
if running_files:
- running_files = running_files._strip_node_info()
+ running_files = running_files.strip_node_info()
dictionary = {
'prepared': node.get_bool('prepared', default=False),