Gentoo Archives: gentoo-commits

From: Arun Raghavan <ford_prefect@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gard:master commit in: /
Date: Wed, 29 Feb 2012 04:58:12
Message-Id: 1330491407.39742baa686f9c4abcda769114918d696cc1de5b.ford_prefect@gentoo
1 commit: 39742baa686f9c4abcda769114918d696cc1de5b
2 Author: Arun Raghavan <ford_prefect <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 29 04:52:57 2012 +0000
4 Commit: Arun Raghavan <ford_prefect <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 29 04:56:47 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gard.git;a=commit;h=39742baa
7
8 Change bug search to use IN_PROGRESS instead of ASSIGNED
9
10 Recent Bugzilla updates caused the ASSIGNED status to be dropped, so
11 we're going to be using IN_PROGRESS from now on for this purpose.
12
13 ---
14 gard-v2.py | 2 +-
15 1 files changed, 1 insertions(+), 1 deletions(-)
16
17 diff --git a/gard-v2.py b/gard-v2.py
18 index f13ee41..7e58d8c 100755
19 --- a/gard-v2.py
20 +++ b/gard-v2.py
21 @@ -24,7 +24,7 @@ relmaxlag = 2 * 3600 * 24
22
23 HOME = os.getenv('HOME')
24 reportpath = HOME + "/gard/reports/"
25 -bugurl = "http://bugs.gentoo.org/buglist.cgi?query_format=advanced&product=Mirrors&status_whiteboard_type=allwordssubstr&status_whiteboard=due&bug_status=ASSIGNED&columnlist=bug_id,opendate,bug_status,resolution,short_desc,status_whiteboard&ctype=csv"
26 +bugurl = "http://bugs.gentoo.org/buglist.cgi?query_format=advanced&product=Mirrors&status_whiteboard_type=allwordssubstr&status_whiteboard=due&bug_status=IN_PROGRESS&columnlist=bug_id,opendate,bug_status,resolution,short_desc,status_whiteboard&ctype=csv"
27
28 def start_logging(url, bugnum, proto):
29 logger = logging.getLogger()