mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
* hugdaylist: drop one Ubuntu filter statement.
This commit is contained in:
parent
ebf10ee50f
commit
a79b16b3cc
5
debian/changelog
vendored
5
debian/changelog
vendored
@ -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
|
||||||
|
|
||||||
|
@ -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)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user