summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbst-marge-bot <marge-bot@buildstream.build>2019-09-09 13:49:34 +0000
committerbst-marge-bot <marge-bot@buildstream.build>2019-09-09 13:49:34 +0000
commit7cc448b5453f958c27c7b561abfa69e4950a28af (patch)
tree4e1b6a71e559a80ef044e7ad8c181ed1391d81a8
parent2869a943917651c2a067ff1638a4e561614231d0 (diff)
parente73d35b44d11d4e92d11b91005730175f593eda7 (diff)
downloadbuildstream-7cc448b5453f958c27c7b561abfa69e4950a28af.tar.gz
Merge branch 'coldtom/fix-status-job-render' into 'master'
_frontend/status.py: Fix non-formatted terminator See merge request BuildStream/buildstream!1589
-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