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
When I update flask-simpleldap to the latest version, My app doesn't work correctly, Finally found that the function get_user_groups() returns an array of strings in the old version, the new version returns a byte array. Why is this incompatibility, I think string arrays are more reasonable.
== my env:
python: 3.5.1
flask version: 1.1.1
flask-simpleldap version : 1.4.0
== I saw that you removed these codes.
if sys.version_info[0] > 2:
result = [r.decode('utf-8') for r in result]