* hugdaylist: drop one Ubuntu filter statement.

This commit is contained in:
Daniel Holbach 2008-01-21 10:45:33 +01:00
parent ebf10ee50f
commit a79b16b3cc
2 changed files with 5 additions and 4 deletions

5
debian/changelog vendored
View File

@ -34,7 +34,10 @@ ubuntu-dev-tools (0.25) UNRELEASED; urgency=low
* mk-sbuild-lv: check for debootstrap release names in * mk-sbuild-lv: check for debootstrap release names in
/usr/share/debootstreap/releases and not in /usr/lib/debootstrap/releases /usr/share/debootstreap/releases and not in /usr/lib/debootstrap/releases
-- Stephan Hermann <sh@sourcecode.de> Sun, 20 Jan 2008 00:39:48 +0100 [ Daniel Holbach ]
* hugdaylist: drop one Ubuntu filter statement.
-- Daniel Holbach <daniel.holbach@ubuntu.com> Mon, 21 Jan 2008 10:43:52 +0100
ubuntu-dev-tools (0.24) hardy; urgency=low ubuntu-dev-tools (0.24) hardy; urgency=low

View File

@ -50,8 +50,7 @@ def check_args():
def filter_unsolved(b): def filter_unsolved(b):
bug = Bug(int(b)) bug = Bug(int(b))
return filter(lambda a: (a.affects.lower().count('ubuntu')) and \ return filter(lambda a: a.status != 'Fix Committed' and \
a.status != 'Fix Committed' and \
(a.assignee in ['motu','desktop-bugs'] or \ (a.assignee in ['motu','desktop-bugs'] or \
not a.assignee), bug.infotable) and \ not a.assignee), bug.infotable) and \
'ubuntu-main-sponsors' not in [str(s) for s in bug.subscribers] and \ 'ubuntu-main-sponsors' not in [str(s) for s in bug.subscribers] and \
@ -66,7 +65,6 @@ def main():
if not l: if not l:
print "BugList of %s is empty." % url print "BugList of %s is empty." % url
sys.exit(0) sys.exit(0)
if howmany == -1: if howmany == -1:
howmany = len(l) howmany = len(l)