ab48c94
diff -ur rubber-1.1/src/util.py rubber-1.1.new/src/util.py
ab48c94
--- rubber-1.1/src/util.py	2006-03-17 14:52:45.000000000 +0100
ab48c94
+++ rubber-1.1.new/src/util.py	2009-06-15 16:05:57.000000000 +0200
ab48c94
@@ -5,7 +5,7 @@
ab48c94
 by the modules for various tasks.
ab48c94
 """
ab48c94
 
ab48c94
-import md5
ab48c94
+import hashlib
ab48c94
 import os, stat, time
ab48c94
 import imp
ab48c94
 import re, string
ab48c94
@@ -19,7 +19,7 @@
ab48c94
 	"""
ab48c94
 	Compute the MD5 sum of a given file.
ab48c94
 	"""
ab48c94
-	m = md5.new()
ab48c94
+	m = hashlib.md5()
ab48c94
 	file = open(fname)
ab48c94
 	for line in file.readlines():
ab48c94
 		m.update(line)