diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2006-10-08 07:49:30 +0000 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2006-10-08 07:49:30 +0000 |
commit | 4d447b4a125d224154c547106b178ac502a447f4 (patch) | |
tree | 77814286fa9ace781dbf99186065b7fda925cec8 | |
parent | 5a0c31e5deca27c211efd9fd04f137d295d64df1 (diff) | |
download | sitesummary-4d447b4a125d224154c547106b178ac502a447f4.tar.gz sitesummary-4d447b4a125d224154c547106b178ac502a447f4.tar.bz2 sitesummary-4d447b4a125d224154c547106b178ac502a447f4.tar.xz |
* Fix typo in get_debian_edu_ver() making it fail to find the version name.
-rw-r--r-- | SiteSummary.pm | 4 | ||||
-rw-r--r-- | debian/changelog | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/SiteSummary.pm b/SiteSummary.pm index 1f33468..f710e15 100644 --- a/SiteSummary.pm +++ b/SiteSummary.pm @@ -114,8 +114,8 @@ sub get_debian_edu_ver { while (<FILE>) { chomp; s/\#.+$//; - next if not (/DEBIAN-EDU-VERSION/); - s/^"DEBIAN-EDU-VERSION=//; + next if not (/VERSION/); + s/^VERSION=//; return $_; } } diff --git a/debian/changelog b/debian/changelog index 20a0a61..d78ce37 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +sitesummary (0.0.16) UNRELEASED; urgency=low + + * Fix typo in get_debian_edu_ver() making it fail to find the version name. + + -- Petter Reinholdtsen <pere@debian.org> Sun, 8 Oct 2006 09:48:43 +0200 + sitesummary (0.0.15) unstable; urgency=low [ Steffen Joeris ] |