Commit c3dc1953 by Richard C Isaacson

Bulk update of choices=BOOLEANS to type='bool'

parent f1301f6f
...@@ -572,8 +572,8 @@ def main(): ...@@ -572,8 +572,8 @@ def main():
method=dict(default='get', choices=['put', 'get', 'delete']), method=dict(default='get', choices=['put', 'get', 'delete']),
type=dict(default='file', choices=['file', 'meta']), type=dict(default='file', choices=['file', 'meta']),
meta=dict(type='dict', default=dict()), meta=dict(type='dict', default=dict()),
clear_meta=dict(choices=BOOLEANS, default=False, type='bool'), clear_meta=dict(default=False, type='bool'),
structure=dict(choices=BOOLEANS, default=True, type='bool'), structure=dict(default=True, type='bool'),
expires=dict(type='int'), expires=dict(type='int'),
) )
) )
......
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