aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetter Reinholdtsen <pere@hungry.com>2006-10-08 07:49:30 +0000
committerPetter Reinholdtsen <pere@hungry.com>2006-10-08 07:49:30 +0000
commit4d447b4a125d224154c547106b178ac502a447f4 (patch)
tree77814286fa9ace781dbf99186065b7fda925cec8
parent5a0c31e5deca27c211efd9fd04f137d295d64df1 (diff)
downloadsitesummary-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.pm4
-rw-r--r--debian/changelog6
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 ]