diff --git a/debian/changelog b/debian/changelog index 172df88..7f964a2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sun, 21 Oct 2007 10:49:26 +0200 + [ Dainel Holbach ] + * hugdaylist: only mention 'unassigned bugs'. + + -- Daniel Holbach Tue, 23 Oct 2007 12:17:53 +0200 ubuntu-dev-tools (0.19) gutsy; urgency=low diff --git a/hugdaylist b/hugdaylist index ae8a75d..ec7cdd3 100755 --- a/hugdaylist +++ b/hugdaylist @@ -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