From: Luca Falavigna Date: Sun, 4 Mar 2012 19:58:23 +0000 (+0000) Subject: Fix variable name in parse_checksum function (Closes: #658525) X-Git-Url: https://git.decadent.org.uk/gitweb/?p=dak.git;a=commitdiff_plain;h=dd06e01b323a8d5bd6130d80cb418647c856fa5a Fix variable name in parse_checksum function (Closes: #658525) Signed-off-by: Luca Falavigna --- diff --git a/daklib/utils.py b/daklib/utils.py index 5e702b04..9afd420e 100755 --- a/daklib/utils.py +++ b/daklib/utils.py @@ -526,8 +526,7 @@ def parse_checksums(where, files, manifest, hashname): files[checkfile][hash_key(hashname)] = checksum for f in files.keys(): if not files[f].has_key(hash_key(hashname)): - rejmsg.append("%s: no entry in checksums-%s in %s" % (checkfile, - hashname, where)) + rejmsg.append("%s: no entry in checksums-%s in %s" % (f, hashname, where)) return rejmsg ################################################################################