* hugdaylist: only mention 'unassigned bugs'.

This commit is contained in:
Daniel Holbach 2007-10-23 12:18:33 +02:00
parent a004935a2f
commit 0699933391
2 changed files with 7 additions and 2 deletions

6
debian/changelog vendored
View File

@ -1,10 +1,14 @@
ubuntu-dev-tools (0.20) UNRELEASED; urgency=low
[ Cesare Tirabassi ]
* suspicious-source: add *.hh to list of excluded files
* suspicious-source: format excluded file list to fit 80 chars limit
* suspicious-source: corrected typos in script and manual page
-- Cesare Tirabassi <norsetto@ubuntu.com> Sun, 21 Oct 2007 10:49:26 +0200
[ Dainel Holbach ]
* hugdaylist: only mention 'unassigned bugs'.
-- Daniel Holbach <daniel.holbach@ubuntu.com> Tue, 23 Oct 2007 12:17:53 +0200
ubuntu-dev-tools (0.19) gutsy; urgency=low

View File

@ -51,7 +51,8 @@ def filter_unsolved(bugs):
bug = Bug(int(b))
if bug.status != 'Fix Committed' and \
'ubuntu-main-sponsors' not in [str(s) for s in bug.subscribers] and \
'ubuntu-universe-sponsors' not in [str(s) for s in bug.subscribers]:
'ubuntu-universe-sponsors' not in [str(s) for s in bug.subscribers] and \
(bug.assignee in ['motu','desktop-bugs'] or not bug.assignee):
result.add(b)
return result