From 3930b85b9a2dd2aaa2bf006d7f126348ea6b9fdb Mon Sep 17 00:00:00 2001 From: Chuck Short Date: Tue, 27 Nov 2012 09:26:48 -0600 Subject: Fix typo in inherit_properties_from_image Should be architecture rather than arch. Fixes LP: 1082547 Change-Id: I9e40b00ec05a99f11894b0e47a9cf47b20b46fe2 Signed-off-by: Chuck Short --- nova/compute/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/compute/api.py b/nova/compute/api.py index 79db499bd..6b358cbd5 100644 --- a/nova/compute/api.py +++ b/nova/compute/api.py @@ -378,7 +378,7 @@ class API(base.Base): return value options_from_image = {'os_type': prop('os_type'), - 'architecture': prop('arch'), + 'architecture': prop('architecture'), 'vm_mode': prop('vm_mode')} # If instance doesn't have auto_disk_config overridden by request, use -- cgit