Commit aca25df6 authored by Anael Beutot's avatar Anael Beutot Committed by Antoine Millet
Browse files

Fix use of *args, **kwargs in cli handler for vm_action

parent 88dd84a9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ class CliHandler(RegisteredCCHandler):
                    errs.error(vm['id'], 'offline hypervisor')
                else:
                    try:
                        hvclient.vm_action(method, vm['h'])
                        hvclient.vm_action(method, vm['h'], *args, **kwargs)
                    except Exception as err:
                        errs.error(vm['id'], str(err))
                    else: