[oe-commits] Peter Kjellerstedt : pybootchartgui: Adopt the width of the index in split output files

git at git.openembedded.org git at git.openembedded.org
Thu Jan 23 10:14:43 UTC 2014


Module: openembedded-core.git
Branch: master
Commit: 45565b24651ab502ae49dc49261dc3ad5634191f
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=45565b24651ab502ae49dc49261dc3ad5634191f

Author: Peter Kjellerstedt <peter.kjellerstedt at axis.com>
Date:   Tue Jan 21 16:22:34 2014 +0100

pybootchartgui: Adopt the width of the index in split output files

Add minimum width zero-padding to the index used in split output files
with -s and -o. I.e., if -s 200 is used, then the index will be
zero-padded to three digits width.

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt at axis.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 scripts/pybootchartgui/pybootchartgui/main.py.in | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/scripts/pybootchartgui/pybootchartgui/main.py.in b/scripts/pybootchartgui/pybootchartgui/main.py.in
index cc9c40b..e9d2c74 100644
--- a/scripts/pybootchartgui/pybootchartgui/main.py.in
+++ b/scripts/pybootchartgui/pybootchartgui/main.py.in
@@ -155,11 +155,13 @@ def main(argv=None):
 			filename = _get_filename(options.output)
 			res_list = parsing.split_res(res, options.num)
 			n = 1
+			width = len(str(len(res_list)))
+			s = "_%%0%dd." % width
 			for r in res_list:
 				if len(res_list) == 1:
 					f = filename + "." + options.format
 				else:
-					f = filename + "_" + str(n) + "." + options.format
+					f = filename + s % n + options.format
 					n = n + 1
 				def render():
 					batch.render(writer, r, options, f)



More information about the Openembedded-commits mailing list