1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-09-06 21:28:42 +02:00

Merge pull request #1038 from Firstyear/20220506-highlight-md5-faults

Show the md5s that are failing to validate
This commit is contained in:
2022-05-09 09:12:51 +02:00
committed by GitHub

View File

@@ -263,8 +263,8 @@ class Fetcher:
# delete it and mark it for downloading from the API
hdrmd5 = packagequery.PackageQuery.queryhdrmd5(i.fullfilename)
if not hdrmd5 or hdrmd5 != i.hdrmd5:
print('%s/%s: attempting download from api, since the hdrmd5 did not match'
% (i.project, i.name))
print('%s/%s: attempting download from api, since the hdrmd5 did not match - %s != %s'
% (i.project, i.name, hdrmd5, i.hdrmd5))
os.unlink(i.fullfilename)
self.__add_cpio(i)