1 --- mod_python-3.3.1/lib/python/mod_python/importer.py
2 +++ mod_python-3.3.1/lib/python/mod_python/importer.py
3 @@ -29,7 +29,10 @@ import new
9 + from hashlib import md5
15 @@ -969,7 +972,7 @@ class _ModuleCache:
16 # name which is a filesystem path. Hope MD5 hex
19 - return self._prefix + md5.new(file).hexdigest()
20 + return self._prefix + md5(file).hexdigest()
23 _global_modules_cache = _ModuleCache()