scripts/bugcommenters-by-target.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit c873958d6c5af72c6dc7483da1bb2f17236cf31d Author: Christian Lohmaier <lohmaier+libreoff...@googlemail.com> Date: Sat Sep 19 18:04:55 2015 +0200 bugs.libreoffice.org â bugs.documentfoundation.org diff --git a/scripts/bugcommenters-by-target.py b/scripts/bugcommenters-by-target.py index 9998072..9b11ff9 100755 --- a/scripts/bugcommenters-by-target.py +++ b/scripts/bugcommenters-by-target.py @@ -14,7 +14,7 @@ from urllib.request import urlopen, URLError from io import BytesIO def get_bugs_for_target(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 + url = 'https://bugs.documentfoundation.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: @@ -28,7 +28,7 @@ def get_bugs_for_target(target): def get_bug_xml(bug_id): xml='' try: - url = 'https://bugs.libreoffice.org/show_bug.cgi?ctype=xml&id=%d' % bug_id + url = 'https://bugs.documentfoundation.org/show_bug.cgi?ctype=xml&id=%d' % bug_id resp = urlopen(url) except URLError: sys.stderr.write('Error fetching {}'.format(url))
_______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits