python/build/verify: prepare SHA support

This commit is contained in:
Max Kellermann
2016-12-29 21:43:47 +01:00
parent 4c650e87fa
commit 79403afbe6
2 changed files with 10 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ def download_and_verify(url, md5, parent_path):
urllib.request.urlretrieve(url, tmp_path)
if not verify_file_digest(tmp_path, md5):
os.unlink(tmp_path)
raise RuntimeError("MD5 mismatch")
raise RuntimeError("Digest mismatch")
os.rename(tmp_path, path)
return path