summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw1998-06-19 20:00:07 +0000
committerbwarsaw1998-06-19 20:00:07 +0000
commit90d5c82d47053c70c511b9ef39c76419f78be023 (patch)
treeee31495a2ab0f4d192b7cfba621af8ce138a5bb8
parentf53ceef26dee3dba57552d1be255dede9959883b (diff)
downloadmailman-90d5c82d47053c70c511b9ef39c76419f78be023.tar.gz
mailman-90d5c82d47053c70c511b9ef39c76419f78be023.tar.zst
mailman-90d5c82d47053c70c511b9ef39c76419f78be023.zip
-rw-r--r--Mailman/Crypt.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/Crypt.py b/Mailman/Crypt.py
index 679e55241..d227be778 100644
--- a/Mailman/Crypt.py
+++ b/Mailman/Crypt.py
@@ -14,9 +14,9 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-import Config
+import mm_cfg
-if Config.USE_CRYPT:
+if mm_cfg.USE_CRYPT:
try:
from crypt import crypt
except ImportError:
@@ -24,7 +24,7 @@ if Config.USE_CRYPT:
if not globals().has_key('crypt'):
# couldn't import crypt.crypt
- Config.USE_CRYPT = 0
+ mm_cfg.USE_CRYPT = 0
# This is good enough.
# XXX: should we always just use md5?
def crypt(string, seed):