From aa66d1df95af8a2919953c50b4f3c6190148818b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ren=C3=A9=20Jochum?= Date: Tue, 19 Jun 2018 16:03:59 +0200 Subject: [PATCH] Fix old none ::APIClient uses. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: René Jochum --- PVE/APIClient/Commands/GuestStatus.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PVE/APIClient/Commands/GuestStatus.pm b/PVE/APIClient/Commands/GuestStatus.pm index 8ae6c75..03e2e4a 100644 --- a/PVE/APIClient/Commands/GuestStatus.pm +++ b/PVE/APIClient/Commands/GuestStatus.pm @@ -180,8 +180,8 @@ __PACKAGE__->register_method ({ code => sub { my ($param) = @_; - my $remote = PVE::Tools::extract_param($param, 'remote'); - my $vmid = PVE::Tools::extract_param($param, 'vmid'); + my $remote = PVE::APIClient::Tools::extract_param($param, 'remote'); + my $vmid = PVE::APIClient::Tools::extract_param($param, 'vmid'); my $config = PVE::APIClient::Config->load(); my $conn = PVE::APIClient::Config->remote_conn($config, $remote); -- 2.39.2