[Libreoffice-commits] dev-tools.git: esc-reporting/esc-report.py
Xisco Fauli
anistenis at gmail.com
Thu Sep 7 08:46:34 UTC 2017
esc-reporting/esc-report.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit fb1282804f9b86c92a96e405f1fa2fcf7c70af8d
Author: Xisco Fauli <anistenis at gmail.com>
Date: Thu Sep 7 10:45:01 2017 +0200
Fix top 10 bugs fixers
diff --git a/esc-reporting/esc-report.py b/esc-reporting/esc-report.py
index 77bef95..f951e02 100755
--- a/esc-reporting/esc-report.py
+++ b/esc-reporting/esc-report.py
@@ -250,7 +250,7 @@ def report_esc_prototype():
for name, count in [(k, x[k]) for k in sorted(x, key=x.get, reverse=True)]:
txt += ' {:<23} {}\n'.format(name, count)
txt += '\n + top 10 bugs fixers:\n'
- x = statList['escList']['QAstat']['top15_reporters']
+ x = statList['escList']['QAstat']['top15_fixers']
for name, count in [(k, x[k]) for k in sorted(x, key=x.get, reverse=True)]:
txt += ' {:<23} {}\n'.format(name, count)
escPrototype = escPrototype.replace('$<ESC_QA_STATS_UPDATE>', txt)
More information about the Libreoffice-commits
mailing list