grammar fix: s/does not exists/does not exist/g

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht
2019-12-13 12:11:26 +01:00
parent 01e872db98
commit 481f6177a5
4 changed files with 4 additions and 4 deletions

View File

@ -689,7 +689,7 @@ sub free_image {
File::Path::remove_tree($path);
} else {
if (!(-f $path || -l $path)) {
warn "disk image '$path' does not exists\n";
warn "disk image '$path' does not exist\n";
return undef;
}