md5 module is deprecated; move to hashlib
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 20 Jul 2010 12:58:13 +0000 (12:58 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 20 Jul 2010 12:58:13 +0000 (12:58 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@16981 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/python/oils/utils/utils.py

index b1fd037..12b3448 100644 (file)
@@ -13,7 +13,7 @@
 # GNU General Public License for more details.
 # -----------------------------------------------------------------------
 
-import re, md5
+import re, hashlib
 import osrf.ses
 from osrf.log import *
 
@@ -24,7 +24,7 @@ from osrf.log import *
 # -----------------------------------------------------------------------
 
 def md5sum(str):
-    m = md5.new()
+    m = hashlib.md5()
     m.update(str)
     return m.hexdigest()