[Libreoffice-commits] dev-tools.git: esc-reporting/esc-collect.py
Xisco Fauli (via logerrit)
logerrit at kemper.freedesktop.org
Mon Mar 8 11:27:23 UTC 2021
esc-reporting/esc-collect.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit bfc1498c358dfea8c8bdf2a3f47340c8a6145e2c
Author: Xisco Fauli <xiscofauli at libreoffice.org>
AuthorDate: Mon Mar 8 12:24:21 2021 +0100
Commit: Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Mon Mar 8 12:25:14 2021 +0100
esc-collect: do not use is:open+after in gerrit query
Otherwise the script won't know when a ticket has been closed
Change-Id: I80a3bb06e6abb809dc750c48e219bd51500bfd8e
diff --git a/esc-reporting/esc-collect.py b/esc-reporting/esc-collect.py
index 046e007..81721b5 100755
--- a/esc-reporting/esc-collect.py
+++ b/esc-reporting/esc-collect.py
@@ -605,7 +605,7 @@ def get_gerrit(cfg):
if p.wait() != 0:
raise CalledProcessError(p.returncode, cmd)
- url = 'https://gerrit.libreoffice.org/changes/?q=is:open+after:' + searchDate.strftime("%Y-%m-%d") + \
+ url = 'https://gerrit.libreoffice.org/changes/?q=after:' + searchDate.strftime("%Y-%m-%d") + \
'&o=DETAILED_LABELS&o=DETAILED_ACCOUNTS&o=MESSAGES&o=CURRENT_COMMIT&o=CURRENT_REVISION&limit=200&start='
offset = 0
if 'offset' in rawList:
More information about the Libreoffice-commits
mailing list