X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FObject%2FRemote%2FProxy.pm;fp=lib%2FObject%2FRemote%2FProxy.pm;h=a3e2a805b70feac24c15dddfc2b8a680d8ab2fcf;hb=9d804009b5363c739598a9cc4507df57a2d59c55;hp=b2ae3c69f4a9480233bb797c1d3efae7492fd159;hpb=9e72f0cf54e92bccdba71eb75037f1cfe4f69f36;p=scpubgit%2FObject-Remote.git diff --git a/lib/Object/Remote/Proxy.pm b/lib/Object/Remote/Proxy.pm index b2ae3c6..a3e2a80 100644 --- a/lib/Object/Remote/Proxy.pm +++ b/lib/Object/Remote/Proxy.pm @@ -5,7 +5,7 @@ use strictures 1; sub AUTOLOAD { my $self = shift; (my $method) = (our $AUTOLOAD =~ /([^:]+)$/); - $self->{handle}->call($method => @_); + $self->{remote}->call($method => @_); } sub DESTROY { }