From dd06e01b323a8d5bd6130d80cb418647c856fa5a Mon Sep 17 00:00:00 2001 From: Luca Falavigna Date: Sun, 4 Mar 2012 19:58:23 +0000 Subject: [PATCH] Fix variable name in parse_checksum function (Closes: #658525) Signed-off-by: Luca Falavigna --- daklib/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 ################################################################################ -- 2.39.2