From 861b8c8b95cf87f629d2b2f639be17f62610c628 Mon Sep 17 00:00:00 2001 From: Aditya Manthramurthy Date: Wed, 26 Mar 2014 16:26:59 +0530 Subject: [PATCH] Fix typo in file name --- providers/ec2/tasks/ami.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/ec2/tasks/ami.py b/providers/ec2/tasks/ami.py index 456d269..f77327f 100644 --- a/providers/ec2/tasks/ami.py +++ b/providers/ec2/tasks/ami.py @@ -117,7 +117,7 @@ class RegisterAMI(Task): registration_params['virtualization_type'] = 'hvm' else: registration_params['virtualization_type'] = 'paravirtual' - akis_path = os.path.join(os.path.dirname(__file__), 'akis.json') + akis_path = os.path.join(os.path.dirname(__file__), 'ami-akis.json') from common.tools import config_get registration_params['kernel_id'] = config_get(akis_path, [info.host['region'], info.manifest.system['architecture']])