Fix iterator to list conversion in ldap_entry module

PR #45778 fixes #45417

(cherry picked from commit 7a747341fb)
pull/47088/head
Gustavo Muniz do Carmo 7 years ago committed by Toshio Kuratomi
parent 3a02228b00
commit 977f094741

@ -0,0 +1,2 @@
bugfixes:
- Fix iterator to list conversion in ldap_entry module.

@ -145,7 +145,7 @@ class LdapEntry(LdapGeneric):
attrs[name] = []
if isinstance(value, list):
attrs[name] = [map(to_bytes, value)]
attrs[name] = list(map(to_bytes, value))
else:
attrs[name].append(to_bytes(value))

Loading…
Cancel
Save