From 960421ecb3db9220609b6f1dbcb9f972dbca9975 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Tue, 15 Nov 2016 15:32:59 -0700 Subject: [PATCH] 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 --- tools/buildman/builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/buildman/builder.py b/tools/buildman/builder.py index 6905ed9..236e061 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): -- 2.7.4