diff options
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | debian/lib/python/debian_linux/debian.py | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 51a5bf50971b..845c7007f451 100644 --- a/debian/changelog +++ b/debian/changelog @@ -204,8 +204,10 @@ linux-2.6 (2.6.20-1~experimental.1) UNRELEASED; urgency=low in an etch environment so that we can build out of tree modules correctly (re-add; patch seems to have been dropped during a merge.) See: #392592 + * Allow '.' and '+' in the target dist field of the changelog. dpkg has + supported this since 1.13.20, see #361171. - -- maximilian attems <maks@debian.org> Thu, 29 Mar 2007 00:14:53 +0200 + -- dann frazier <dannf@debian.org> Tue, 03 Apr 2007 15:10:04 -0600 linux-2.6 (2.6.18.dfsg.1-10) unstable; urgency=low diff --git a/debian/lib/python/debian_linux/debian.py b/debian/lib/python/debian_linux/debian.py index 4e7cac3c1d0f..37f47db14dce 100644 --- a/debian/lib/python/debian_linux/debian.py +++ b/debian/lib/python/debian_linux/debian.py @@ -14,7 +14,7 @@ class Changelog(list): \) \s+ (?P<distribution> - [-0-9a-zA-Z]+ + [-+0-9a-zA-Z.]+ ) \; """ |