diff options
author | Simon Glass | 2016-11-15 15:32:59 -0700 |
---|---|---|
committer | Simon Glass | 2016-12-02 10:37:47 -0700 |
commit | 960421ecb3db9220609b6f1dbcb9f972dbca9975 (patch) | |
tree | b1061b5e9cb6047971206606b628032709e2d006 | |
parent | b464f8e7ded33dc3f3c26dd905e1fa9807dd7526 (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>
-rw-r--r-- | tools/buildman/builder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/builder.py b/tools/buildman/builder.py index 6905ed94ab4..236e0617ac4 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): |