From b853778a93cbb280243b90bb8d81953f8a9e7427 Mon Sep 17 00:00:00 2001 From: Devon Crouse Date: Tue, 11 Mar 2014 18:19:03 -0600 Subject: [PATCH] Fixed references to missing method in ec2 modules Change-Id: I9b89d433b545269d111b3c290b6411aabf58dd24 --- library/cloud/route53 | 2 +- library/cloud/s3 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/library/cloud/route53 b/library/cloud/route53 index f98f68f4bd9..49344ee2061 100644 --- a/library/cloud/route53 +++ b/library/cloud/route53 @@ -157,7 +157,7 @@ def commit(changes): time.sleep(500) def main(): - argument_spec = ec2_argument_keys_spec() + argument_spec = ec2_argument_spec() argument_spec.update(dict( command = dict(choices=['get', 'create', 'delete'], required=True), zone = dict(required=True), diff --git a/library/cloud/s3 b/library/cloud/s3 index 4fc470678b2..6d64a3f43fe 100644 --- a/library/cloud/s3 +++ b/library/cloud/s3 @@ -271,7 +271,7 @@ def is_walrus(s3_url): return False def main(): - argument_spec = ec2_argument_keys_spec() + argument_spec = ec2_argument_spec() argument_spec.update(dict( bucket = dict(required=True), object = dict(),