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.py27
1 files changed, 13 insertions, 14 deletions
diff --git a/passlib/handlers/roundup.py b/passlib/handlers/roundup.py
index ac9a189..c7f99c1 100644
--- a/passlib/handlers/roundup.py
+++ b/passlib/handlers/roundup.py
@@ -1,30 +1,29 @@
"""passlib.handlers.roundup - Roundup issue tracker hashes"""
-#=========================================================
-#imports
-#=========================================================
-#core
+#=============================================================================
+# imports
+#=============================================================================
+# core
import logging; log = logging.getLogger(__name__)
-#site
-#libs
+# site
+# pkg
import passlib.utils.handlers as uh
from passlib.utils.compat import u
-#pkg
-#local
+# local
__all__ = [
"roundup_plaintext",
"ldap_hex_md5",
"ldap_hex_sha1",
]
-#=========================================================
+#=============================================================================
#
-#=========================================================
+#=============================================================================
roundup_plaintext = uh.PrefixWrapper("roundup_plaintext", "plaintext",
prefix=u("{plaintext}"), lazy=True)
-#NOTE: these are here because they're currently only known to be used by roundup
+# 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)
-#=========================================================
-#eof
-#=========================================================
+#=============================================================================
+# eof
+#=============================================================================