mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Fix iterator to list conversion in ldap_entry module
PR #45778 fixes #45417
This commit is contained in:
committed by
Sviatoslav Sydorenko
parent
30314c15c7
commit
7a747341fb
@@ -145,7 +145,7 @@ class LdapEntry(LdapGeneric):
|
|||||||
attrs[name] = []
|
attrs[name] = []
|
||||||
|
|
||||||
if isinstance(value, list):
|
if isinstance(value, list):
|
||||||
attrs[name] = [map(to_bytes, value)]
|
attrs[name] = list(map(to_bytes, value))
|
||||||
else:
|
else:
|
||||||
attrs[name].append(to_bytes(value))
|
attrs[name].append(to_bytes(value))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user