summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorMark Washenberger <mark.washenberger@rackspace.com>2011-03-28 13:30:15 -0400
committerMark Washenberger <mark.washenberger@rackspace.com>2011-03-28 13:30:15 -0400
commit5977a511ed202fcf396e7c60d713eb5329d6883b (patch)
tree5e8f2e7549b521fe4f146dbfd3d1149fe977f408 /nova/api
parent3825bf7d9c78008d04168368f1567d8bc1067ac6 (diff)
style changes
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/servers.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/nova/api/openstack/servers.py b/nova/api/openstack/servers.py
index a8e3e7900..a98f81d98 100644
--- a/nova/api/openstack/servers.py
+++ b/nova/api/openstack/servers.py
@@ -267,11 +267,11 @@ class Controller(wsgi.Controller):
actions = {
'changePassword': self._action_change_password,
- 'reboot': self._action_reboot,
- 'resize': self._action_resize,
+ 'reboot': self._action_reboot,
+ 'resize': self._action_resize,
'confirmResize': self._action_confirm_resize,
- 'revertResize': self._action_revert_resize,
- 'rebuild': self._action_rebuild,
+ 'revertResize': self._action_revert_resize,
+ 'rebuild': self._action_rebuild,
}
input_dict = self._deserialize(req.body, req.get_content_type())
@@ -595,8 +595,8 @@ class ControllerV11(Controller):
def _action_change_password(self, input_dict, req, id):
context = req.environ['nova.context']
- if not 'changePassword' in input_dict \
- or not 'adminPass' in input_dict['changePassword']:
+ if (not 'changePassword' in input_dict
+ or not 'adminPass' in input_dict['changePassword']):
return exc.HTTPBadRequest()
password = input_dict['changePassword']['adminPass']
self.compute_api.set_admin_password(context, id, password)