Fix bad messages in volume remove

This commit is contained in:
2021-06-22 04:31:02 -04:00
parent 75f2560217
commit 1ae34c1960
2 changed files with 5 additions and 5 deletions

View File

@ -912,7 +912,7 @@ def vm_volumes_remove(config, vm, volume, restart):
xml = domain_information.get('xml', None)
if xml is None:
return False, "VM does not have a valid XML doccument."
return False, "VM does not have a valid XML document."
try:
parsed_xml = fromstring(xml)