summaryrefslogtreecommitdiffstats
path: root/scripts/pybootchartgui
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2014-01-21 16:22:34 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-01-23 10:17:33 +0000
commit57c93e35074da2de5a66001b24a31cd40a9b2ca7 (patch)
tree5188f1a24038e6f8e929ad7b334cecfa6e5b7b41 /scripts/pybootchartgui
parent9d492a46fa273747fa29b92680d86619717f158c (diff)
downloadpoky-57c93e35074da2de5a66001b24a31cd40a9b2ca7.tar.gz
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. (From OE-Core rev: 45565b24651ab502ae49dc49261dc3ad5634191f) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/pybootchartgui')
-rw-r--r--scripts/pybootchartgui/pybootchartgui/main.py.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/pybootchartgui/pybootchartgui/main.py.in b/scripts/pybootchartgui/pybootchartgui/main.py.in
index cc9c40b178..e9d2c74f1e 100644
--- a/scripts/pybootchartgui/pybootchartgui/main.py.in
+++ b/scripts/pybootchartgui/pybootchartgui/main.py.in
@@ -155,11 +155,13 @@ def main(argv=None):
155 filename = _get_filename(options.output) 155 filename = _get_filename(options.output)
156 res_list = parsing.split_res(res, options.num) 156 res_list = parsing.split_res(res, options.num)
157 n = 1 157 n = 1
158 width = len(str(len(res_list)))
159 s = "_%%0%dd." % width
158 for r in res_list: 160 for r in res_list:
159 if len(res_list) == 1: 161 if len(res_list) == 1:
160 f = filename + "." + options.format 162 f = filename + "." + options.format
161 else: 163 else:
162 f = filename + "_" + str(n) + "." + options.format 164 f = filename + s % n + options.format
163 n = n + 1 165 n = n + 1
164 def render(): 166 def render():
165 batch.render(writer, r, options, f) 167 batch.render(writer, r, options, f)