summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Coldrick <thomas.coldrick@codethink.co.uk>2019-09-09 11:55:17 +0100
committerbst-marge-bot <marge-bot@buildstream.build>2019-09-09 13:13:30 +0000
commite73d35b44d11d4e92d11b91005730175f593eda7 (patch)
tree4e1b6a71e559a80ef044e7ad8c181ed1391d81a8
parent2869a943917651c2a067ff1638a4e561614231d0 (diff)
downloadbuildstream-coldtom/fix-status-job-render.tar.gz
_frontend/status.py: Fix non-formatted terminatorcoldtom/fix-status-job-render
Currently we don't format the terminator to the displayed widget for a StatusJob, which means that we have blue brackets apart from the terminating one, which is white. This is a trivial patch to fix this.
-rw-r--r--src/buildstream/_frontend/status.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/_frontend/status.py b/src/buildstream/_frontend/status.py
index a68d0d04e..a204bd9ac 100644
--- a/src/buildstream/_frontend/status.py
+++ b/src/buildstream/_frontend/status.py
@@ -588,6 +588,6 @@ class _StatusJob():
# Add padding before terminating ']'
terminator = (' ' * padding) + ']'
- text += terminator
+ text += self._format_profile.fmt(terminator)
return text