ActiveDirectoryMultiPlugin.enumerateGroup does a test_id = id.lower(). This is bad for objectGUIDs since those are binary strings, not texts and transforming them will break things.
I can't think of a good reason to lowercase the id there; perhaps a simple test_id=id will suffice.
|