You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix LDAP connector not to assume YAML parameter values are unicode.
Turns out PyYAML, when running in Py2, will return `str` rather than `unicode` string values for any all-ascii strings, even when parsing YAML from a Unicode string source. Since the LDAP module requires Unicode strings as parameter inputs, we have to ensure that any ASCII strings returned by PyYAML are up-converted.
0 commit comments