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 /SiteSummary.pm | |
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.
Diffstat (limited to 'SiteSummary.pm')
-rw-r--r-- | SiteSummary.pm | 4 |
1 files changed, 2 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 $_; } } |