Remove extra spaces
This commit is contained in:
		@@ -1458,16 +1458,10 @@ def backup_vm(
 | 
				
			|||||||
    ttot = round(tend - tstart, 2)
 | 
					    ttot = round(tend - tstart, 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if is_snapshot_remove_failed:
 | 
					    if is_snapshot_remove_failed:
 | 
				
			||||||
        retmsg = (
 | 
					        retmsg = f"WARNING: Successfully backed up VM '{domain}' ({backup_type}@{datestring}) to '{target_path}' in {ttot} seconds, but failed to remove snapshot as requested for volume(s) {', '.join(which_snapshot_remove_failed)}: {', '.join(msg_snapshot_remove_failed)}"
 | 
				
			||||||
            f"WARNING: Successfully backed up VM '{domain}' ({backup_type} @ {datestring}) to '{target_path}' in {ttot} seconds, but failed to remove snapshot as requested for volume(s) {', '.join(which_snapshot_remove_failed)}: {', '.join(msg_snapshot_remove_failed)}",
 | 
					 | 
				
			||||||
        )
 | 
					 | 
				
			||||||
    elif retain_snapshots:
 | 
					    elif retain_snapshots:
 | 
				
			||||||
        retmsg = (
 | 
					        retmsg = f"Successfully backed up VM '{domain}' ({backup_type}@{datestring}, snapshots retained) to '{target_path}' in {ttot} seconds."
 | 
				
			||||||
            f"Successfully backed up VM '{domain}' ({backup_type} @ {datestring}, snapshots retained) to '{target_path}' in {ttot} seconds.",
 | 
					 | 
				
			||||||
        )
 | 
					 | 
				
			||||||
    else:
 | 
					    else:
 | 
				
			||||||
        retmsg = (
 | 
					        retmsg = f"Successfully backed up VM '{domain}' ({backup_type}@{datestring}) to '{target_path}' in {ttot} seconds."
 | 
				
			||||||
            f"Successfully backed up VM '{domain}' ({backup_type} @ {datestring}) to '{target_path}' in {ttot} seconds.",
 | 
					 | 
				
			||||||
        )
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return True, retmsg
 | 
					    return True, retmsg
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user