summaryrefslogtreecommitdiff
path: root/passlib/handlers/roundup.py
diff options
context:
space:
mode:
Diffstat (limited to 'passlib/handlers/roundup.py')
-rw-r--r--passlib/handlers/roundup.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/passlib/handlers/roundup.py b/passlib/handlers/roundup.py
index c7f99c1..bb00cf6 100644
--- a/passlib/handlers/roundup.py
+++ b/passlib/handlers/roundup.py
@@ -7,7 +7,6 @@ import logging; log = logging.getLogger(__name__)
# site
# pkg
import passlib.utils.handlers as uh
-from passlib.utils.compat import u
# local
__all__ = [
"roundup_plaintext",
@@ -18,11 +17,11 @@ __all__ = [
#
#=============================================================================
roundup_plaintext = uh.PrefixWrapper("roundup_plaintext", "plaintext",
- prefix=u("{plaintext}"), lazy=True)
+ prefix=u"{plaintext}", lazy=True)
# NOTE: these are here because they're currently only known to be used by roundup
-ldap_hex_md5 = uh.PrefixWrapper("ldap_hex_md5", "hex_md5", u("{MD5}"), lazy=True)
-ldap_hex_sha1 = uh.PrefixWrapper("ldap_hex_sha1", "hex_sha1", u("{SHA}"), lazy=True)
+ldap_hex_md5 = uh.PrefixWrapper("ldap_hex_md5", "hex_md5", u"{MD5}", lazy=True)
+ldap_hex_sha1 = uh.PrefixWrapper("ldap_hex_sha1", "hex_sha1", u"{SHA}", lazy=True)
#=============================================================================
# eof