Fix escaping code, missing "unicode" string identifier in one of the value

comparisons
This commit is contained in:
Simo Sorce
2007-08-21 16:25:02 -04:00
parent f5e30866d1
commit ac926646ea

View File

@@ -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"