From 4fb0d66f6a3fd9b3415ca6f29219ce4339b5dee6 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 5 Jan 2020 00:49:50 -0500 Subject: [PATCH] Use proper variable name --- client-cli/pvc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client-cli/pvc.py b/client-cli/pvc.py index 99487c67..c07a3dc1 100755 --- a/client-cli/pvc.py +++ b/client-cli/pvc.py @@ -1157,12 +1157,12 @@ def net_dhcp_add(net, ipaddr, macaddr, hostname): @click.argument( 'macaddr' ) -def net_dhcp_remove(net, reservation): +def net_dhcp_remove(net, macaddr): """ Remove a DHCP static reservation for MACADDR from virtual network NET; NET must be a VNI. """ - retcode, retmsg = pvc_network.net_dhcp_remove(config, net, reservation) + retcode, retmsg = pvc_network.net_dhcp_remove(config, net, macaddr) cleanup(retcode, retmsg) ###############################################################################