[Libreoffice-commits] dev-tools.git: scripts/bugcommenters-by-target.py
Robinson Tryon
qubit at runcibility.com
Tue Nov 19 09:35:21 PST 2013
scripts/bugcommenters-by-target.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 7627fe1fd0563a63d816669f4c33053698bba897
Author: Robinson Tryon <qubit at runcibility.com>
Date: Sun Nov 17 00:44:51 2013 -0500
BugCommenters: bugs.freedesktop.org -> bugs.libreoffice.org
Bugzilla Migration
Change-Id: Ib92858fd5c98eedce8ec27038dd526bfc8bc8172
Reviewed-on: https://gerrit.libreoffice.org/6698
Reviewed-by: Björn Michaelsen <bjoern.michaelsen at canonical.com>
Tested-by: Björn Michaelsen <bjoern.michaelsen at canonical.com>
diff --git a/scripts/bugcommenters-by-target.py b/scripts/bugcommenters-by-target.py
index 11aaa88..f03b38e 100755
--- a/scripts/bugcommenters-by-target.py
+++ b/scripts/bugcommenters-by-target.py
@@ -13,7 +13,7 @@ from urllib.request import urlopen, URLError
from io import BytesIO
def get_bugs_for_target(target):
- url = 'https://bugs.freedesktop.org/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&bug_status=NEEDINFO&bug_status=PLEASETEST&columnlist=&list_id=351988&product=LibreOffice&query_format=advanced&resolution=FIXED&status_whiteboard=target%%3A%s&status_whiteboard_type=allwords&ctype=csv' % target
+ url = 'https://bugs.libreoffice.org/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&bug_status=NEEDINFO&bug_status=PLEASETEST&columnlist=&list_id=351988&product=LibreOffice&query_format=advanced&resolution=FIXED&status_whiteboard=target%%3A%s&status_whiteboard_type=allwords&ctype=csv' % target
try:
resp = urlopen(url)
except URLError:
@@ -27,7 +27,7 @@ def get_bugs_for_target(target):
def get_bug_xml(bug_id):
xml=''
try:
- url = 'https://bugs.freedesktop.org/show_bug.cgi?ctype=xml&id=%d' % bug_id
+ url = 'https://bugs.libreoffice.org/show_bug.cgi?ctype=xml&id=%d' % bug_id
resp = urlopen(url)
except URLError:
sys.stderr.write('Error fetching {}'.format(url))
More information about the Libreoffice-commits
mailing list