[Libreoffice-commits] dev-tools.git: esc-reporting/qa-tools.py
Xisco Fauli
anistenis at gmail.com
Mon Sep 11 09:06:26 UTC 2017
esc-reporting/qa-tools.py | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
New commits:
commit 9cfbdbceaec0e635495839d412dcc8d8de827eff
Author: Xisco Fauli <anistenis at gmail.com>
Date: Mon Sep 11 11:05:21 2017 +0200
QA tools: ignore tdf 89903 here
diff --git a/esc-reporting/qa-tools.py b/esc-reporting/qa-tools.py
index c9f2073..c00c95d 100755
--- a/esc-reporting/qa-tools.py
+++ b/esc-reporting/qa-tools.py
@@ -688,8 +688,10 @@ def analyze_bugzilla(statList, bugzillaData, cfg):
lResults['fixBugPing'][0].append(rowId)
lResults['fixBugPing'][1].append('')
- if rowStatus == 'ASSIGNED' and datetime.datetime.strptime(row['last_change_time'], "%Y-%m-%dT%H:%M:%SZ") < cfg['inactiveAssigned'] and \
- 'easyHack' not in row['keywords']:
+ #Ignore tdf#89903
+ if rowStatus == 'ASSIGNED' and \
+ datetime.datetime.strptime(row['last_change_time'], "%Y-%m-%dT%H:%M:%SZ") < cfg['inactiveAssigned'] and \
+ 'easyHack' not in row['keywords'] and rowId != 89903:
if 'inactiveAssigned' not in lResults:
lResults['inactiveAssigned'] = [[],[]]
lResults['inactiveAssigned'][0].append(rowId)
More information about the Libreoffice-commits
mailing list