[Libreoffice-commits] dev-tools.git: qa/bugzillaChecker.py
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Wed Jul 25 15:59:20 UTC 2018
qa/bugzillaChecker.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 0e99f1a031e09cfa5fd5f6741b51aac5754a0b13
Author: Xisco Fauli <xiscofauli at libreoffice.org>
AuthorDate: Wed Jul 25 17:57:49 2018 +0200
Commit: Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Wed Jul 25 17:58:55 2018 +0200
QA: Show results in sorted order
diff --git a/qa/bugzillaChecker.py b/qa/bugzillaChecker.py
index 00ee793..1d747bd 100755
--- a/qa/bugzillaChecker.py
+++ b/qa/bugzillaChecker.py
@@ -363,9 +363,9 @@ def analyze_bugzilla_checkers(statList, bugzillaData, cfg):
util_add_to_result(lResults, 'empty_alias', value)
colorama.init(autoreset=True)
- for dKey, dValue in lResults.items():
+ for dKey, dValue in sorted(lResults.items()):
if dValue:
- print('\n=== ' + dKey.replace('_', ' ') + ' ===')
+ print('\n=== ' + dKey.replace('_', ' ').upper() + ' ===')
dValue = sorted(dValue, key=lambda x: x[1])
for idx in range(len(dValue)):
background = Back.RESET
More information about the Libreoffice-commits
mailing list