summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-07-02 21:38:00 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-07-02 21:38:00 +0900
commitfa33673807a07b2a96bcc14c4059440b7f318110 (patch)
tree025f6e4e03078ef4e63a0828bd80bf30c14d3f14
parent4b33cefdeb015b4687fd5bcfe66d942e4c5b6d85 (diff)
downloadbuildstream-fa33673807a07b2a96bcc14c4059440b7f318110.tar.gz
_pipeline.py: Fixing pep8 error
Forgot to squash this into the previous commit before pushing.
-rwxr-xr-xbuildstream/_pipeline.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/buildstream/_pipeline.py b/buildstream/_pipeline.py
index 412b57a57..4dad9d6e4 100755
--- a/buildstream/_pipeline.py
+++ b/buildstream/_pipeline.py
@@ -413,8 +413,10 @@ class Pipeline():
raise PipelineError()
elif status == SchedStatus.TERMINATED:
self.message(self.target, MessageType.WARN,
- "Terminated after fetching {} elements, pulling {} elements, building {} elements and pushing {} elements"
- .format(fetched, pulled, built, pushed),
+ "Terminated after fetching {} elements, ".format(fetched) +
+ "pulling {} elements, ".format(pulled) +
+ "building {} elements ".format(built) +
+ "and pushing {} elements".format(pushed),
elapsed=elapsed)
raise PipelineError()
else: