From: Dietmar Maurer Date: Wed, 7 May 2014 10:31:55 +0000 (+0200) Subject: pvesh: fix help command X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=1a0a454209aac73fe1d6fa4a09650cb1d4df64fd;p=pve-manager-legacy.git pvesh: fix help command --- diff --git a/bin/pvesh b/bin/pvesh index 7074c14f..50d610ce 100755 --- a/bin/pvesh +++ b/bin/pvesh @@ -292,10 +292,11 @@ sub find_resource_methods { for my $method (qw(GET POST PUT DELETE)) { my $uri_param = {}; - my ($handler, $info, $pm) = PVE::API2->find_handler($method, $path, $uri_param); + my $path_match; + my ($handler, $info) = PVE::API2->find_handler($method, $path, $uri_param, \$path_match); if ($handler && $info && !$ihash->{$info}) { $ihash->{$info} = { - path => $pm, + path => $path_match, handler => $handler, info => $info, uri_param => $uri_param,