Handle extra return variable

This commit is contained in:
Joshua Boniface 2023-10-17 11:47:01 -04:00
parent 6448b31d2c
commit 45c4c86911
1 changed files with 1 additions and 1 deletions

View File

@ -1326,7 +1326,7 @@ def backup_vm(
return False, f"ERROR: Target path {target_path} does not exist!"
# 1. Get information about VM
vm_detail = get_list(zkhandler, limit=dom_uuid, is_fuzzy=False)[0]
_, vm_detail = get_list(zkhandler, limit=dom_uuid, is_fuzzy=False)[0]
vm_volumes = [
tuple(d["name"].split("/")) for d in vm_detail["disks"] if d["type"] == "rbd"
]