Remove spurious argument to vm_define

This commit is contained in:
2019-12-19 11:43:59 -05:00
parent 2d14fabe62
commit 78089afb4e
2 changed files with 2 additions and 2 deletions

View File

@ -296,7 +296,7 @@ def api_vm_root():
else:
autostart = False
return api_helper.vm_define(vm, libvirt_xml, node, selector)
return api_helper.vm_define(libvirt_xml, node, selector)
@api.route('/api/v1/vm/<vm>', methods=['GET', 'POST', 'PUT', 'DELETE'])
@authenticator