scripts: size_report: Fix output of header break line
Was apparently an artifact of Python2 to Python3 conversion. Led to printing of literal '='*110i instead of a line of ='s. Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
This commit is contained in:
parent
340fabedbf
commit
c2a70a2710
1 changed files with 1 additions and 1 deletions
|
@ -367,7 +367,7 @@ def print_tree(data, total, depth):
|
||||||
|
|
||||||
print('{:92s} {:10s} {:8s}'.format(
|
print('{:92s} {:10s} {:8s}'.format(
|
||||||
bcolors["FAIL"] + "Path", "Size", "%" + bcolors["ENDC"]))
|
bcolors["FAIL"] + "Path", "Size", "%" + bcolors["ENDC"]))
|
||||||
print("'='*110i")
|
print('=' * 110)
|
||||||
for i in sorted(data):
|
for i in sorted(data):
|
||||||
p = i.split(os.path.sep)
|
p = i.split(os.path.sep)
|
||||||
if depth and len(p) > depth:
|
if depth and len(p) > depth:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue