From a79b16b3cc3c4da8871b03a4ac6ffb554d7465c5 Mon Sep 17 00:00:00 2001 From: Daniel Holbach Date: Mon, 21 Jan 2008 10:45:33 +0100 Subject: [PATCH] * hugdaylist: drop one Ubuntu filter statement. --- debian/changelog | 5 ++++- hugdaylist | 4 +--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index e6fbf46..c53551c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -34,7 +34,10 @@ ubuntu-dev-tools (0.25) UNRELEASED; urgency=low * mk-sbuild-lv: check for debootstrap release names in /usr/share/debootstreap/releases and not in /usr/lib/debootstrap/releases - -- Stephan Hermann Sun, 20 Jan 2008 00:39:48 +0100 + [ Daniel Holbach ] + * hugdaylist: drop one Ubuntu filter statement. + + -- Daniel Holbach Mon, 21 Jan 2008 10:43:52 +0100 ubuntu-dev-tools (0.24) hardy; urgency=low diff --git a/hugdaylist b/hugdaylist index 25e4f94..555e112 100755 --- a/hugdaylist +++ b/hugdaylist @@ -50,8 +50,7 @@ def check_args(): def filter_unsolved(b): bug = Bug(int(b)) - return filter(lambda a: (a.affects.lower().count('ubuntu')) and \ - a.status != 'Fix Committed' and \ + return filter(lambda a: a.status != 'Fix Committed' and \ (a.assignee in ['motu','desktop-bugs'] or \ not a.assignee), bug.infotable) and \ 'ubuntu-main-sponsors' not in [str(s) for s in bug.subscribers] and \ @@ -66,7 +65,6 @@ def main(): if not l: print "BugList of %s is empty." % url sys.exit(0) - if howmany == -1: howmany = len(l)