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;
}