mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix escaping code, missing "unicode" string identifier in one of the value
comparisons
This commit is contained in:
@@ -47,7 +47,7 @@ def ldap_search_escape(match):
|
||||
|
||||
if value == u"(":
|
||||
return u"\\28"
|
||||
elif value == ")":
|
||||
elif value == u")":
|
||||
return u"\\29"
|
||||
elif value == u"\\":
|
||||
return u"\\5c"
|
||||
|
||||
Reference in New Issue
Block a user