From 3aea5ae34b727f03cb130b3a8104d9090efc024f Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 21 Mar 2020 16:46:34 -0400 Subject: [PATCH] Correct invalid function call --- client-cli/pvc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-cli/pvc.py b/client-cli/pvc.py index 872243bd..2b9ed383 100755 --- a/client-cli/pvc.py +++ b/client-cli/pvc.py @@ -572,7 +572,7 @@ def vm_define(vmconfig, target_node, node_limit, node_selector, node_autostart): except: cleanup(False, 'Error: XML is malformed or invalid') - retcode, retmsg = pvc_vm.define_vm(config, new_cfg, target_node, node_limit, node_selector, node_autostart) + retcode, retmsg = pvc_vm.vm_define(config, new_cfg, target_node, node_limit, node_selector, node_autostart) cleanup(retcode, retmsg) ###############################################################################