From 2b4c65d95695a08417310dca0800a39570399446 Mon Sep 17 00:00:00 2001
From: Richard C Isaacson <richard.c.isaacson@gmail.com>
Date: Tue, 11 Mar 2014 22:50:03 -0500
Subject: [PATCH] Bulk update of choices=BOOLEANS to type='bool'

---
 cloud/rax_files | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/cloud/rax_files b/cloud/rax_files
index 564cdb578d6..d2958c2054a 100644
--- a/cloud/rax_files
+++ b/cloud/rax_files
@@ -337,11 +337,11 @@ def main():
             container=dict(),
             state=dict(choices=['present', 'absent', 'list'], default='present'),
             meta=dict(type='dict', default=dict()),
-            clear_meta=dict(choices=BOOLEANS, default=False, type='bool'),
+            clear_meta=dict(default=False, type='bool'),
             type=dict(choices=['container', 'meta'], default='container'),
             ttl=dict(type='int'),
-            public=dict(choices=BOOLEANS, default=False, type='bool'),
-            private=dict(choices=BOOLEANS, default=False, type='bool'),
+            public=dict(default=False, type='bool'),
+            private=dict(default=False, type='bool'),
             web_index=dict(),
             web_error=dict()
         )