summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-07-02 21:51:07 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-07-02 21:51:07 +0900
commitfba4e18d06baa50dbfd3cf5d39df01c4ad384346 (patch)
tree32a39f5e17f8f96f6ca3dc91623b0d5a86813dbc
parentfa33673807a07b2a96bcc14c4059440b7f318110 (diff)
downloadbuildstream-fba4e18d06baa50dbfd3cf5d39df01c4ad384346.tar.gz
_pipeline.py: Fixup an error in previous commit...
Seems I have been impatient today...
-rwxr-xr-xbuildstream/_pipeline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_pipeline.py b/buildstream/_pipeline.py
index 4dad9d6e4..f931a0e83 100755
--- a/buildstream/_pipeline.py
+++ b/buildstream/_pipeline.py
@@ -404,7 +404,7 @@ class Pipeline():
else:
pushed = 0
if pull:
- pulled += len(pull.processed_elements)
+ pulled = len(pull.processed_elements)
else:
pulled = 0