summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Hooker <matt@cloudscaling.com>2011-08-02 15:30:27 -0400
committerMatthew Hooker <matt@cloudscaling.com>2011-08-02 15:30:27 -0400
commitd1891d2dd18a14535ec22a0363fd8234a01dbb8c (patch)
tree938158802678141ed38f05076918c38dcee322f6
parent378571665538fb5c4667a9d068678378ddf8526f (diff)
remove unused parameter
-rw-r--r--nova/virt/hyperv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/virt/hyperv.py b/nova/virt/hyperv.py
index c26fe108b..315f635c7 100644
--- a/nova/virt/hyperv.py
+++ b/nova/virt/hyperv.py
@@ -373,7 +373,7 @@ class HyperVConnection(driver.ComputeDriver):
raise exception.InstanceNotFound(instance_id=instance.id)
self._set_vm_state(instance.name, 'Reboot')
- def destroy(self, instance, network_info):
+ def destroy(self, instance):
"""Destroy the VM. Also destroy the associated VHD disk files"""
LOG.debug(_("Got request to destroy vm %s"), instance.name)
vm = self._lookup(instance.name)