From 4e6a2378658dbf4ba8e0b652bc2929b4f72e7ad3 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Tue, 23 Oct 2018 13:09:58 +0000 Subject: [PATCH] projects.py: Beautify logging ([] around iteration count) Signed-off-by: Jan Lindemann --- scripts/projects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/projects.py b/scripts/projects.py index f60a1d39..9240d99e 100644 --- a/scripts/projects.py +++ b/scripts/projects.py @@ -148,7 +148,7 @@ class Build(object): make_cmd = [ "make", target ] path = self.find_proj_path_cached(module) delim_len=120 - delim='---- %d/%d: running %s in %s -' % (cur_project, num_projects, make_cmd, path) + delim='---- [%d/%d]: running %s in %s -' % (cur_project, num_projects, make_cmd, path) delim = delim + '-' * (delim_len - len(delim)) print(',' + delim + ' >')