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:
Paul Sokolovsky 2019-02-25 11:46:22 +03:00 committed by Andrew Boie
commit c2a70a2710

View file

@ -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: