From c2bf201bceeca96c7dac6811a9ccaabe31424af4 Mon Sep 17 00:00:00 2001 From: Richard C Isaacson Date: Tue, 11 Mar 2014 22:56:51 -0500 Subject: [PATCH] Bulk update of choices=BOOLEANS to type='bool' --- library/database/postgresql_user | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/database/postgresql_user b/library/database/postgresql_user index b6383006cb4..1dda1a6dc57 100644 --- a/library/database/postgresql_user +++ b/library/database/postgresql_user @@ -443,9 +443,9 @@ def main(): priv=dict(default=None), db=dict(default=''), port=dict(default='5432'), - fail_on_user=dict(type='bool', choices=BOOLEANS, default='yes'), + fail_on_user=dict(type='bool', default='yes'), role_attr_flags=dict(default=''), - encrypted=dict(type='bool', choices=BOOLEANS, default='no'), + encrypted=dict(type='bool', default='no'), expires=dict(default=None) ), supports_check_mode = True