Commit 42e84e1b by Michael DeHaan

Merge pull request #4264 from wulczer/fix-linode-param-type

The payment term param in the Linode module is an int.
parents e7957b6d 7fa92054
......@@ -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),
......
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