Skip Menu |

This queue is for tickets about the File-Fetch CPAN distribution.

Report information
The Basics
Id: 18954
Status: resolved
Priority: 0/
Queue: File-Fetch

People
Owner: Nobody in particular
Requestors: grousse [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 0.1.0
Fixed in: (no value)



Subject: spurious warnings for unitialised strings in concatenation
Localizing error message throw warnings when unitialised content is used, as illustrated by attached testcase. Use of uninitialized value in concatenation (.) or string at /usr/lib/perl5/vendor_perl/5.8.8/Locale/Maketext/Simple.pm line 220.
Subject: test_fetch.pl
#!/usr/bin/perl -w use File::Fetch; use strict; # silence File::Fetch warnings $File::Fetch::WARN = 0; # blacklist lynx handler for false positives $File::Fetch::BLACKLIST = [ qw/lynx/ ]; my $url = 'http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Config-Tiny-2.06.tar.bz2'; my $ff = File::Fetch->new(uri => $url); my $result = $ff->fetch();
On Thu Apr 27 11:03:53 2006, GROUSSE wrote: Show quoted text
> Localizing error message throw warnings when unitialised content is > used, as illustrated by attached testcase. > > Use of uninitialized value in concatenation (.) or string at > /usr/lib/perl5/vendor_perl/5.8.8/Locale/Maketext/Simple.pm line 220.
Thanks for reporting.. this has been addressed with patch 12440