summaryrefslogtreecommitdiff
path: root/passlib/hash.py
diff options
context:
space:
mode:
Diffstat (limited to 'passlib/hash.py')
-rw-r--r--passlib/hash.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/passlib/hash.py b/passlib/hash.py
index 7290e11..8f1b895 100644
--- a/passlib/hash.py
+++ b/passlib/hash.py
@@ -2,7 +2,7 @@
Note
====
-This module does not actually contain any hashes. This file
+This module does not actually contain any hashes. This file
is a stub that replaces itself with a proxy object.
This proxy object (passlib.registry._PasslibRegistryProxy)
@@ -12,17 +12,17 @@ The actual implementation of the various hashes is store elsewhere,
mainly in the submodules of the ``passlib.handlers`` package.
"""
-#NOTE: could support 'non-lazy' version which just imports
-# all schemes known to list_crypt_handlers()
+# NOTE: could support 'non-lazy' version which just imports
+# all schemes known to list_crypt_handlers()
-#=========================================================
+#=============================================================================
# import proxy object and replace this module
-#=========================================================
+#=============================================================================
from passlib.registry import _proxy
import sys
sys.modules[__name__] = _proxy
-#=========================================================
-#eoc
-#=========================================================
+#=============================================================================
+# eoc
+#=============================================================================