Hello. This is simple fix of SI units.
I'm going to install it. Martin contrib/ChangeLog: 2017-11-08 Martin Liska <mli...@suse.cz> * analyze_brprob.py: Fix abbreviations for SI units. --- contrib/analyze_brprob.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/analyze_brprob.py b/contrib/analyze_brprob.py index 8f83b5a0221..e03d1da1cde 100755 --- a/contrib/analyze_brprob.py +++ b/contrib/analyze_brprob.py @@ -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