Subject: | Version number of Mail::POP3Client contains trailing space |
Hi,
thanks for your module! I noticed there have not been new versions since
a couple of years, I wonder if you're still out there and interested in
this module; I know I do.
The version number of Mail::POP3Client contains a trailing space. This
makes for instance ExtUtils::MakeMaker render warnings such as:
Version string '2.18 ' contains invalid data; ignoring: ' '
The fix is very trivial, it is to change this line in POP3Client.pm from
$VERSION = substr q$Revision: 2.18 $, 10;
to
$VERSION = substr q$Revision: 2.18 $, 10, -1;
that last '-1' will remove the last character from the string.
--
Mike