summaryrefslogtreecommitdiff
path: root/tools/buildman
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-11-15 15:32:59 -0700
committerSimon Glass <sjg@chromium.org>2016-12-02 10:37:47 -0700
commit960421ecb3db9220609b6f1dbcb9f972dbca9975 (patch)
treeb1061b5e9cb6047971206606b628032709e2d006 /tools/buildman
parentb464f8e7ded33dc3f3c26dd905e1fa9807dd7526 (diff)
buildman: Clean up odd characters on the terminal
At present buildman leaves behind a few characters during its progress updates, which looks odd. Fix it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman')
-rw-r--r--tools/buildman/builder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/builder.py b/tools/buildman/builder.py
index 6905ed94ab..236e0617ac 100644
--- a/tools/buildman/builder.py
+++ b/tools/buildman/builder.py
@@ -443,7 +443,7 @@ class Builder:
name += target
Print(line + name, newline=False)
- length = 14 + len(name)
+ length = 16 + len(name)
self.ClearLine(length)
def _GetOutputDir(self, commit_upto):