X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Futils.py;h=03135e72e4a58fe99dc9ad05c8506c707957d55f;hb=8c854b93e52ff5347596ec6d553d73053ebc092f;hp=8e06cf35cc6dbbc795b008865c64991b2d9dbfc3;hpb=2d0a2a5b3282a61c2749b94f971549b99f60bef8;p=dak.git diff --git a/daklib/utils.py b/daklib/utils.py index 8e06cf35..03135e72 100755 --- a/daklib/utils.py +++ b/daklib/utils.py @@ -252,22 +252,23 @@ def check_hash(where, files, hashname, hashfunc): for f in files.keys(): file_handle = None try: - file_handle = open_file(f) - - # Check for the hash entry, to not trigger a KeyError. - if not files[f].has_key(hash_key(hashname)): - rejmsg.append("%s: misses %s checksum in %s" % (f, hashname, - where)) + try: + file_handle = open_file(f) + + # Check for the hash entry, to not trigger a KeyError. + if not files[f].has_key(hash_key(hashname)): + rejmsg.append("%s: misses %s checksum in %s" % (f, hashname, + where)) + continue + + # Actually check the hash for correctness. + if hashfunc(file_handle) != files[f][hash_key(hashname)]: + rejmsg.append("%s: %s check failed in %s" % (f, hashname, + where)) + except CantOpenError: + # TODO: This happens when the file is in the pool. + warn("Cannot open file %s" % f) continue - - # Actually check the hash for correctness. - if hashfunc(file_handle) != files[f][hash_key(hashname)]: - rejmsg.append("%s: %s check failed in %s" % (f, hashname, - where)) - except CantOpenError: - # TODO: This happens when the file is in the pool. - warn("Cannot open file %s" % f) - continue finally: if file_handle: file_handle.close()