X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fprocess_unchecked.py;h=5884db181ab6bf302a6a177e5ee8f6a1d06e29ab;hb=5c1e20ee2095ab9ccd7d916690c66acb7315c5f2;hp=123fd9f37e7e6f7316300f8b98c90452b12a086c;hpb=d16e2f9f99f018d3672e77f86a3adf264844590f;p=dak.git diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index 123fd9f3..5884db18 100755 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -919,8 +919,10 @@ def check_urgency (): ################################################################################ def check_hashes (): - utils.check_hash(".changes", files, "md5sum", apt_pkg.md5sum) - utils.check_hash(".dsc", dsc_files, "md5sum", apt_pkg.md5sum) + utils.check_hash(".changes", files, "md5", apt_pkg.md5sum) + utils.check_size(".changes", files) + utils.check_hash(".dsc", dsc_files, "md5", apt_pkg.md5sum) + utils.check_size(".dsc", dsc_files) # This is stupid API, but it'll have to do for now until # we actually have proper abstraction @@ -1048,8 +1050,6 @@ def check_signed_by_key(): for si in q.getresult(): if si[0] not in source_ids: source_ids.append(si[0]) - print "source_ids: %s" % (",".join([str(x) for x in source_ids])) - is_nmu = 1 for si in source_ids: is_nmu = 1