Fixed AD-LDAP decode problem
This commit is contained in:
parent
9949f9914e
commit
e9f7860816
|
@ -211,7 +211,7 @@ class LdapPrincipal:
|
|||
for group in lgroups:
|
||||
(dn, values) = group
|
||||
if type(values) == dict:
|
||||
self.ldap_groups.append(values["cn"][0].decode("ascii"))
|
||||
self.ldap_groups.append(values["cn"][0].decode("utf-8"))
|
||||
else:
|
||||
lgroups = self.ldap_client.search_s(
|
||||
self.ldap_base_dn, ldap.SCOPE_SUBTREE, ldap_filter, self.ldap_attrs
|
||||
|
|
Loading…
Reference in New Issue