summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Koenig <andk@cpan.org>2015-04-20 17:11:01 +0100
committerDavid Mitchell <davem@iabyn.com>2015-04-20 17:11:01 +0100
commit3198fda65dbcd975c56916e4b98f515fab7f02e5 (patch)
tree5292f3d551e8a7587f1a02093c8b019bb19a98da
parentbe39acb2d731fef6f575d98c6fb0cf896ab8c72d (diff)
downloadperl-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"
-rw-r--r--cpan/CPAN/lib/CPAN.pm3
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) = "";