diff options
| author | Trey Morris <trey.morris@rackspace.com> | 2011-03-14 16:38:53 -0500 |
|---|---|---|
| committer | Trey Morris <trey.morris@rackspace.com> | 2011-03-14 16:38:53 -0500 |
| commit | 1d1e5e38175ff7956b3a28ccc1ce61f700700e8b (patch) | |
| tree | 72a02aba89f9864e05689428a1b64e43a4b45dc2 /nova | |
| parent | 5a0d4fbc24e897e4aa861819fd2f861e7dedcb6b (diff) | |
| download | nova-1d1e5e38175ff7956b3a28ccc1ce61f700700e8b.tar.gz nova-1d1e5e38175ff7956b3a28ccc1ce61f700700e8b.tar.xz nova-1d1e5e38175ff7956b3a28ccc1ce61f700700e8b.zip | |
fixed keyword arg error
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/virt/xenapi/vmops.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/virt/xenapi/vmops.py b/nova/virt/xenapi/vmops.py index bec403543..64f2c6231 100644 --- a/nova/virt/xenapi/vmops.py +++ b/nova/virt/xenapi/vmops.py @@ -82,7 +82,7 @@ class VMOps(object): def spawn(self, instance, network_info=None): vdi_uuid = self.create_disk(instance) - self._spawn_with_disk(instance, vdi_uuid=vdi_uuid, network_info) + self._spawn_with_disk(instance, vdi_uuid, network_info) def _spawn_with_disk(self, instance, vdi_uuid, network_info=None): """Create VM instance""" |
