Fix splitting of role_attrs

This commit is contained in:
Toshio Kuratomi 2015-05-18 12:45:47 -07:00
parent 81b476cd02
commit 7dd9f57e16

View file

@ -263,7 +263,7 @@ def user_alter(cursor, module, user, password, role_attr_flags, encrypted, expir
role_attr_flags_changing = False
if role_attr_flags:
role_attr_flags_dict = {}
for r in role_attr_flags.split(','):
for r in role_attr_flags.split(' '):
if r.startswith('NO'):
role_attr_flags_dict[r.replace('NO', '', 1)] = False
else: