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

This commit is contained in:
Richard C Isaacson 2014-03-11 22:53:24 -05:00
parent f1301f6fd9
commit c3dc195362

View file

@ -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'),
)
)