Commit 521e135c by Devon Crouse Committed by Michael DeHaan

Fixed references to missing method in ec2 modules

Change-Id: I9b89d433b545269d111b3c290b6411aabf58dd24
parent d808604a
......@@ -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),
......
......@@ -249,7 +249,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(),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment