qvm-ls: fix handling VM list on command line
This commit is contained in:
parent
776393e97b
commit
84677fa70b
@ -190,7 +190,7 @@ def main():
|
|||||||
vms_list = [vm for vm in qvm_collection.values()]
|
vms_list = [vm for vm in qvm_collection.values()]
|
||||||
#assume VMs are presented in desired order:
|
#assume VMs are presented in desired order:
|
||||||
if len(arguments.VMs) > 0:
|
if len(arguments.VMs) > 0:
|
||||||
vms_list = [vm for vm in vms_list if vm.name in arguments.VMs]
|
vms_to_display = [vm for vm in vms_list if vm.name in arguments.VMs]
|
||||||
#otherwise, format them accordingly:
|
#otherwise, format them accordingly:
|
||||||
else:
|
else:
|
||||||
no_vms = len (vms_list)
|
no_vms = len (vms_list)
|
||||||
|
Loading…
Reference in New Issue
Block a user