X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCPAN%2FTarzip.pm;h=88e8ef505f2be2808f1825cee8a5daeec1de93bc;hb=917f17002097ee577163787c18abe1a911b23f4e;hp=e637e3e027ed0aba8f8a43d12a494d0ab265080f;hpb=f20de9f042d39c1d62d00a7c9da4cca3665ec21d;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/CPAN/Tarzip.pm b/lib/CPAN/Tarzip.pm index e637e3e..88e8ef5 100644 --- a/lib/CPAN/Tarzip.pm +++ b/lib/CPAN/Tarzip.pm @@ -4,7 +4,7 @@ use strict; use vars qw($VERSION @ISA $BUGHUNTING); use CPAN::Debug; use File::Basename (); -$VERSION = sprintf "%.6f", substr(q$Rev: 1525 $,4)/1000000 + 5.4; +$VERSION = sprintf "%.6f", substr(q$Rev: 1717 $,4)/1000000 + 5.4; # module is internal to CPAN.pm @ISA = qw(CPAN::Debug); @@ -13,7 +13,7 @@ $BUGHUNTING ||= 0; # released code must have turned off # it's ok if file doesn't exist, it just matters if it is .gz or .bz2 sub new { my($class,$file) = @_; - $CPAN::Frontend->mydie("new called without arg") unless defined $file; + $CPAN::Frontend->mydie("CPAN::Tarzip->new called without arg") unless defined $file; if (0) { # nonono, we get e.g. 01mailrc.txt uncompressed if only wget is available $CPAN::Frontend->mydie("file[$file] doesn't match /\\.(bz2|gz|zip|tgz)\$/")