From c3dc195362a2ee18a658fc25f9203dc95baf4771 Mon Sep 17 00:00:00 2001 From: Richard C Isaacson Date: Tue, 11 Mar 2014 22:53:24 -0500 Subject: [PATCH] Bulk update of choices=BOOLEANS to type='bool' --- library/cloud/rax_files_objects | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/cloud/rax_files_objects b/library/cloud/rax_files_objects index b628ff14027..0b733487714 100644 --- a/library/cloud/rax_files_objects +++ b/library/cloud/rax_files_objects @@ -572,8 +572,8 @@ def main(): method=dict(default='get', choices=['put', 'get', 'delete']), type=dict(default='file', choices=['file', 'meta']), meta=dict(type='dict', default=dict()), - clear_meta=dict(choices=BOOLEANS, default=False, type='bool'), - structure=dict(choices=BOOLEANS, default=True, type='bool'), + clear_meta=dict(default=False, type='bool'), + structure=dict(default=True, type='bool'), expires=dict(type='int'), ) )