Fix missing format key on delete
This commit is contained in:
parent
836d7eb538
commit
318a2353ea
|
@ -291,7 +291,7 @@ def undefine_vm(zk_conn, domain):
|
||||||
# Delete the configurations
|
# Delete the configurations
|
||||||
try:
|
try:
|
||||||
click.echo('Undefining VM "{}".'.format(dom_uuid))
|
click.echo('Undefining VM "{}".'.format(dom_uuid))
|
||||||
zkhandler.deletekey(zk_conn, '/domains/{}')
|
zkhandler.deletekey(zk_conn, '/domains/{}'.format(dom_uuid))
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue