Merge pull request #31 from ed-/fix-reboot

Removes the id from reboot since params and require take care of that now.
This commit is contained in:
Tim Simpson
2012-08-16 13:06:08 -07:00

View File

@@ -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)