mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-03 17:41:38 +00:00
grammar fix: s/does not exists/does not exist/g
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
56054937a6
commit
a7f047588e
@ -119,9 +119,9 @@ __PACKAGE__->register_method ({
|
||||
my $vmlist = PVE::Cluster::get_vmlist();
|
||||
|
||||
my $guest_info = $vmlist->{ids}->{$guest};
|
||||
die "Guest '$guest' does not exists.\n"
|
||||
die "Guest '$guest' does not exist.\n"
|
||||
if !defined($guest_info);
|
||||
die "Target '$param->{target}' does not exists.\n"
|
||||
die "Target '$param->{target}' does not exist.\n"
|
||||
if defined($param->{target}) && !defined($nodelist->{$param->{target}});
|
||||
|
||||
my $guest_class = $PVE::API2::Replication::lookup_guest_class->($guest_info->{type});
|
||||
|
@ -227,7 +227,7 @@ sub resolve_proxyto {
|
||||
if !$node;
|
||||
} else {
|
||||
$node = $uri_param->{$proxyto};
|
||||
raise_param_exc({ $proxyto => "proxyto parameter does not exists"})
|
||||
raise_param_exc({ $proxyto => "proxyto parameter does not exist"})
|
||||
if !$node;
|
||||
}
|
||||
return $node;
|
||||
|
Loading…
Reference in New Issue
Block a user