From 4fd5a896decc07fc06d7ac01d8c77e97878ce3ba Mon Sep 17 00:00:00 2001 From: Ed Cranford Date: Wed, 15 Aug 2012 16:42:37 -0500 Subject: [PATCH] Removes the id from reboot since params and require take care of that now. --- reddwarfclient/mcli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reddwarfclient/mcli.py b/reddwarfclient/mcli.py index 2cacfa5f..17c1b1e8 100644 --- a/reddwarfclient/mcli.py +++ b/reddwarfclient/mcli.py @@ -132,7 +132,7 @@ class InstanceCommands(common.AuthedCommandsBase): self._require('id') self._pretty_print(self.dbaas.management.stop, self.id) - def reboot(self, id): + def reboot(self): """Reboot the instance.""" self._require('id') self._pretty_print(self.dbaas.management.reboot, self.id)