diff options
author | Andreas Koenig <andk@cpan.org> | 2015-04-20 17:11:01 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2015-04-20 17:11:01 +0100 |
commit | 3198fda65dbcd975c56916e4b98f515fab7f02e5 (patch) | |
tree | 5292f3d551e8a7587f1a02093c8b019bb19a98da /cpan | |
parent | be39acb2d731fef6f575d98c6fb0cf896ab8c72d (diff) | |
download | perl-3198fda65dbcd975c56916e4b98f515fab7f02e5.tar.gz |
CPAN.pm: Fix "Redundant argument in sprintf"
RT #122159
5.22-tobe includes a new warning type, "Redundant argument in sprintf".
Stop CPAN emitting such a warning.
To quote Andreas from the ticket:
"I'll jump to 2.12 then in my copy and will not release a 2.11"
Diffstat (limited to 'cpan')
-rw-r--r-- | cpan/CPAN/lib/CPAN.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpan/CPAN/lib/CPAN.pm b/cpan/CPAN/lib/CPAN.pm index 93ad482a61..6096916bd9 100644 --- a/cpan/CPAN/lib/CPAN.pm +++ b/cpan/CPAN/lib/CPAN.pm @@ -2,7 +2,7 @@ # vim: ts=4 sts=4 sw=4: use strict; package CPAN; -$CPAN::VERSION = '2.10'; +$CPAN::VERSION = '2.11'; $CPAN::VERSION =~ s/_//; # we need to run chdir all over and we would get at wrong libraries @@ -318,7 +318,6 @@ Enter 'h' for help. }, $CPAN::VERSION, - $rl_avail ) } my($continuation) = ""; |