Skip Menu |

This queue is for tickets about the PAR CPAN distribution.

Report information
The Basics
Id: 78633
Status: resolved
Priority: 0/
Queue: PAR

People
Owner: RSCHUPP [...] cpan.org
Requestors: keno [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.005
Fixed in: (no value)



Subject: PAR::import ignores url => $repo_client_object
Around line 540 of PAR.pm: my $obj; # Support existing clients passed in as objects. if (ref($url) and UNIVERSAL::isa($obj, 'PAR::Repository::Client')) { $obj = $url; } Should be isa($url,...) not isa($obj,...): my $obj; # Support existing clients passed in as objects. if (ref($url) and UNIVERSAL::isa($url, 'PAR::Repository::Client')) { $obj = $url; }
Thanks, Ken! Applied your patch, will be in the next release. Cheers, Roderich