From b356dcbe5214eff70a2f9907e524d2a2c70fa25b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Urba=C5=84ski?= Date: Thu, 26 Sep 2013 18:23:21 +0200 Subject: [PATCH] The payment term param in the Linode module is an int. --- cloud/linode | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/linode b/cloud/linode index 0cf2fe25d95..555bfebea8d 100644 --- a/cloud/linode +++ b/cloud/linode @@ -440,7 +440,7 @@ def main(): distribution = dict(type='int'), datacenter = dict(type='int'), linode_id = dict(type='int', aliases=['lid']), - payment_term = dict(default=1, choices=[1, 12, 24]), + payment_term = dict(type='int', default=1, choices=[1, 12, 24]), password = dict(type='str'), ssh_pub_key = dict(type='str'), swap = dict(type='int', default=512),