esc-reporting/qa-tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 58dcb2c0d147bf24312d037c02060b4575df2541 Author: Xisco Fauli <[email protected]> Date: Wed Jul 12 23:03:57 2017 +0200 QA tools: Warn when a bug is incorrectly set to RESOLVED FIXED diff --git a/esc-reporting/qa-tools.py b/esc-reporting/qa-tools.py index 9053bd2..299336a 100755 --- a/esc-reporting/qa-tools.py +++ b/esc-reporting/qa-tools.py @@ -404,7 +404,7 @@ def analyze_bugzilla(statList, bugzillaData, cfg): if creationDate >= cfg[reportPeriod] and actionMail == creatorMail and \ addedStatus == 'RESOLVED_FIXED' and rowStatus == 'RESOLVED_FIXED' and \ - removedStatus == 'NEEDINFO': + 'target:' not in row['whiteboard']: movedToFixed = True elif newStatus and change['field_name'] == 'resolution': _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
