diff options
| author | Brian Waldon <brian.waldon@rackspace.com> | 2011-08-02 13:32:14 -0400 |
|---|---|---|
| committer | Brian Waldon <brian.waldon@rackspace.com> | 2011-08-02 13:32:14 -0400 |
| commit | b65c7e2378d8344d1948fe4cf0dde66ef34b7204 (patch) | |
| tree | a36743cd6b030e0c071fcd17dc6634f0b7d48d50 /nova/api | |
| parent | 1fc4c4cb9bdfca2cf6a931cec44fa25ee76c502d (diff) | |
| download | nova-b65c7e2378d8344d1948fe4cf0dde66ef34b7204.tar.gz nova-b65c7e2378d8344d1948fe4cf0dde66ef34b7204.tar.xz nova-b65c7e2378d8344d1948fe4cf0dde66ef34b7204.zip | |
fixing typo
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/create_instance_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/create_instance_helper.py b/nova/api/openstack/create_instance_helper.py index b0f422655..53e814cd5 100644 --- a/nova/api/openstack/create_instance_helper.py +++ b/nova/api/openstack/create_instance_helper.py @@ -317,7 +317,7 @@ class ServerXMLDeserializer(wsgi.MetadataXMLDeserializer): attributes = ('name', 'backup_type', 'rotation') return self._deserialize_image_action(node, attributes) - def _deserialize_image_action(self, node, allowed_attribtues): + def _deserialize_image_action(self, node, allowed_attributes): data = {} for attribute in allowed_attributes: value = node.getAttribute(attribute) |
