Code

fix typo
authorgmcm <gmcm@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 26 Sep 2002 13:38:35 +0000 (13:38 +0000)
committergmcm <gmcm@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 26 Sep 2002 13:38:35 +0000 (13:38 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1266 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/password.py

index 0ba2c5e39f3c7d3b37ffa83c95297e27d2679907..459e1f7877c86d94f9e3b0924dd9767f65c3a0b0 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: password.py,v 1.6 2002-09-26 07:39:21 richard Exp $
+# $Id: password.py,v 1.7 2002-09-26 13:38:35 gmcm Exp $
 
 __doc__ = """
 Password handling (encoding, decoding).
@@ -23,7 +23,7 @@ Password handling (encoding, decoding).
 
 import sha, re, string
 try:
-    import crypt:
+    import crypt
 except:
     crypt = None
     pass