warning message (not!)
Robin Barker [Thu, 8 Feb 2001 14:38:07 +0000 (14:38 +0000)]
       Message-Id: <200102081438.OAA20498@tempest.npl.co.uk>

p4raw-id: //depot/perl@8717

lib/CPAN.pm

index fce7dc4..ed48d68 100644 (file)
@@ -5388,7 +5388,7 @@ sub TIEHANDLE {
     $ret = bless {GZ => $gz}, $class;
   } else {
     my $pipe = "$CPAN::Config->{gzip} --decompress --stdout $file |";
-    my $fh = FileHandle->new($pipe) or die "Could pipe[$pipe]: $!";
+    my $fh = FileHandle->new($pipe) or die "Could not pipe[$pipe]: $!";
     binmode $fh;
     $ret = bless {FH => $fh}, $class;
   }