From: Thomas Viehmann Date: Fri, 2 May 2008 15:49:25 +0000 (+0000) Subject: fix typo in checksum reject X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=8fc04641020ec17693364a2d8be861022ef788bc;p=dak.git fix typo in checksum reject --- diff --git a/ChangeLog b/ChangeLog index ec20bd15..77026003 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-05-02 Thomas Viehmann + + * dak/process_unchecked.py (check_hashes): fix typo in + checksum reject message. + 2008-05-02 Joerg Jaspert * config/debian/extensions.py: used reindent.py from the python diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index 6bbcf2dc..8bfc25ce 100644 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -946,7 +946,7 @@ def check_hashes (): fs = daklib.utils.build_file_list(changes, 0, "checksums-%s" % h, h) check_hash(".changes %s" % (h), fs, h, f, files) except daklib.utils.no_files_exc: - reject("No Checksums-%s: field in .changes file" % (h)) + reject("No Checksums-%s: field in .changes" % (h)) if "source" not in changes["architecture"]: continue @@ -954,7 +954,7 @@ def check_hashes (): fs = daklib.utils.build_file_list(dsc, 1, "checksums-%s" % h, h) check_hash(".dsc %s" % (h), fs, h, f, dsc_files) except daklib.utils.no_files_exc: - reject("No Checksums-%s: field in .changes file" % (h)) + reject("No Checksums-%s: field in .dsc" % (h)) ################################################################################