Subject: | Typo in Client.pm |
Doubtful its important in this case:
This is perl, v5.8.4 built for i386-linux-thread-multi
Linux oinkpig.halkeye.net 2.6.10 #1 Sun Jan 2 20:19:50 PST 2005 i686 GNU/Linux
sub new {
my $class = shift;
my $self = bless {}, $class;
$self->{__timeout} = 15;
$self->{__no_proxy} = [ qw(localhost, 127.0.0.1) ]; <<--- shouldn't have the comma there.
$self->{__charset} = 'utf-8';
$self;
}