Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ldaptor/entryhelpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def match(self, filter):
possibleMatches = [
x[len(filter.substrings[0].value) :]
for x in possibleMatches
if x.lower().startswith(filter.substrings[0].value.lower())
if x.lower().startswith(filter.substrings[0].value.decode().lower())
]
del substrings[0]

Expand All @@ -183,15 +183,15 @@ def match(self, filter):
possibleMatches = [
x[: -len(filter.substrings[0].value)]
for x in possibleMatches
if x.lower().endswith(filter.substrings[-1].value.lower())
if x.lower().endswith(filter.substrings[-1].value.decode().lower())
]
del substrings[-1]

while possibleMatches and substrings:
assert isinstance(substrings[0], pureldap.LDAPFilter_substrings_any)
r = []
for possible in possibleMatches:
i = possible.lower().find(substrings[0].value.lower())
i = possible.lower().find(substrings[0].value.decode().lower())
if i >= 0:
r.append(possible[i:])
possibleMatches = r
Expand Down