analyze_brprob.py: fix SI units

2017-11-08  Martin Liska  <mliska@suse.cz>

	* analyze_brprob.py: Fix abbreviations for SI units.

From-SVN: r254517
This commit is contained in:
Martin Liska 2017-11-08 08:24:14 +01:00 committed by Martin Liska
parent 41f1dada8e
commit caba2b36fa
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2017-11-08 Martin Liska <mliska@suse.cz>
* analyze_brprob.py: Fix abbreviations for SI units.
2017-10-02 Thomas Schwinge <thomas@codesourcery.com>
* gcc_update (files_and_dependencies): Handle libbacktrace.

View File

@ -149,7 +149,7 @@ class Summary:
def count_formatted(self):
v = self.count
for unit in ['','K','M','G','T','P','E','Z']:
for unit in ['', 'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y']:
if v < 1000:
return "%3.2f%s" % (v, unit)
v /= 1000.0