Author: fw Date: 2005-09-23 07:55:31 +0000 (Fri, 23 Sep 2005) New Revision: 2118 Modified: data/README lib/python/bugs.py Log: lib/python/bugs.py (PackageNoteParsed.__iter__): Permit "bug filed" in package notes. data/README: Document it. Modified: data/README ==================================================================--- data/README 2005-09-23 01:07:14 UTC (rev 2117) +++ data/README 2005-09-23 07:55:31 UTC (rev 2118) @@ -39,8 +39,8 @@ "not-affected" as the version. The notes can be freeform, but some are understood by the tools, - including "unfixed", "bug #nnnnn", and "high", "medium", "low", and - "unimportant" urgencies. + including "unfixed", "bug #nnnnn", "bug filed", and "high", + "medium", "low", and "unimportant" urgencies. begin claimed by foo end claimed by foo Modified: lib/python/bugs.py ==================================================================--- lib/python/bugs.py 2005-09-23 01:07:14 UTC (rev 2117) +++ lib/python/bugs.py 2005-09-23 07:55:31 UTC (rev 2118) @@ -204,7 +204,10 @@ if u: urgency = u continue - + + if n == ''bug filed'': + continue + match = self.re_bug.match(n) if match: (bug,) = match.groups()