From 7b4fe546909a330485c6d62f92d1c8e07699ea46 Mon Sep 17 00:00:00 2001 From: Atlas Health Date: Thu, 3 Apr 2014 02:40:38 -0700 Subject: [PATCH] fixed error related to type being defined as a number --- cloud/ec2_snapshot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/ec2_snapshot b/cloud/ec2_snapshot index 8673525dfe0..075fe143f84 100644 --- a/cloud/ec2_snapshot +++ b/cloud/ec2_snapshot @@ -125,7 +125,7 @@ def main(): ec2_secret_key = dict(aliases=['aws_secret_key', 'secret_key'], no_log=True), ec2_access_key = dict(aliases=['aws_access_key', 'access_key']), wait = dict(type='bool', default='true'), - wait_timeout = dict(type='number', default=0), + wait_timeout = dict(default=0), snapshot_tags = dict(type='dict', default=dict()), ) )