[Libreoffice-commits] dev-tools.git: qa/bugzillaChecker.py

Xisco Fauli xiscofauli at libreoffice.org
Tue Apr 3 15:57:31 UTC 2018


 qa/bugzillaChecker.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6c68f9ee6942c2952b53b499d4121cac273351de
Author: Xisco Fauli <xiscofauli at libreoffice.org>
Date:   Tue Apr 3 12:38:18 2018 +0200

    QA: Fix TypeError problem

diff --git a/qa/bugzillaChecker.py b/qa/bugzillaChecker.py
index 8e501fe..ea0731f 100755
--- a/qa/bugzillaChecker.py
+++ b/qa/bugzillaChecker.py
@@ -315,7 +315,7 @@ def analyze_bugzilla_checkers(statList, bugzillaData, cfg):
             #In case the reporter assigned the bug to himself at creation time
             if not addAssigned and creationDate >= cfg['reportPeriod'] and \
                     row['assigned_to'] != 'libreoffice-bugs at lists.freedesktop.org' and (rowStatus == 'NEW' or rowStatus == 'UNCONFIRMED'):
-                value = [ rowId, row['creation_time'], row['assigned_to'] ]
+                value = [ rowId, creationDate, row['assigned_to'] ]
                 util_add_to_result(lResults, 'change_status_assigned', value)
 
             if movedToNeedInfo and everConfirmed:


More information about the Libreoffice-commits mailing list