[Libreoffice-commits] dev-tools.git: esc-reporting/qa-tools.py
Xisco Fauli
anistenis at gmail.com
Mon Jun 12 12:05:07 UTC 2017
esc-reporting/qa-tools.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit ba2a96586f0a354c2538dc63cd23c981f8b01631
Author: Xisco Fauli <anistenis at gmail.com>
Date: Mon Jun 12 13:49:15 2017 +0200
Fix incorrect statement
diff --git a/esc-reporting/qa-tools.py b/esc-reporting/qa-tools.py
index 505a732..a8124f7 100755
--- a/esc-reporting/qa-tools.py
+++ b/esc-reporting/qa-tools.py
@@ -517,7 +517,8 @@ def analyze_bugzilla(statList, bugzillaData, cfg):
elif movedFromNeedInfo:
total += 1
print(str(total) + " - MOVED FROM NEEDINFO: https://bugs.documentfoundation.org/show_bug.cgi?id=" + str(row['id']))
- elif newerVersion:
+
+ if newerVersion:
total += 1
print(str(total) + " - VERSION CHANGED TO A NEWER ONE: https://bugs.documentfoundation.org/show_bug.cgi?id=" + str(row['id']))
More information about the Libreoffice-commits
mailing list