Fix splitting of role_attrs
This commit is contained in:
parent
7e5a4afb6b
commit
5c96c5c9c2
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue