Replace md5 module with hashlib module

* H237  module md5 is removed in Python 3

Change-Id: I56ea59e0dedd99febc056095ab3e3bf15983f92b
This commit is contained in:
Christian Berendt 2014-07-22 14:31:20 +02:00
parent 1e588a8d40
commit dfc91b7e85
1 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ from __future__ import print_function
import argparse
import datetime
import functools
import md5
import hashlib
import os
import pkginfo
import re
@ -424,7 +424,7 @@ class Mirror(object):
'.' + tarball)
with open(dot_destination_path, 'w') as dest:
src = open(source_path, 'r').read()
md5sum = md5.md5(src).hexdigest()
md5sum = hashlib.md5(src).hexdigest()
dest.write(src)
safe_name = urllib.quote(tarball)