summaryrefslogtreecommitdiffstats
path: root/nova/compute
diff options
context:
space:
mode:
authortermie <github@anarkystic.com>2011-04-20 11:52:19 -0700
committertermie <github@anarkystic.com>2011-04-20 11:52:19 -0700
commitb26f3166554cf5de29fcedee7463bc523786cf72 (patch)
treec47c68f8869009940df539b23c45865dd007550d /nova/compute
parentf4cfb9f0e654f26664345a041a62fd93613ef83b (diff)
fix typo
Diffstat (limited to 'nova/compute')
-rw-r--r--nova/compute/manager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py
index 8103ed61e..fac00e45e 100644
--- a/nova/compute/manager.py
+++ b/nova/compute/manager.py
@@ -396,7 +396,7 @@ class ComputeManager(manager.SchedulerDependentManager):
'rescuing')
self.network_manager.setup_compute_network(context, instance_id)
_update_state = lambda result: self._update_state_callback(
- self, context, instance_id, result))
+ self, context, instance_id, result)
self.driver.rescue(instance_ref, _update_state)
self._update_state(context, instance_id)
@@ -412,7 +412,7 @@ class ComputeManager(manager.SchedulerDependentManager):
power_state.NOSTATE,
'unrescuing')
_update_state = lambda result: self._update_state_callback(
- self, context, instance_id, result))
+ self, context, instance_id, result)
self.driver.unrescue(instance_ref, _update_state)
self._update_state(context, instance_id)