]> git.decadent.org.uk Git - dak.git/commitdiff
fix typo in checksum reject
authorThomas Viehmann <tv@beamnet.de>
Fri, 2 May 2008 15:49:25 +0000 (15:49 +0000)
committerThomas Viehmann <tv@beamnet.de>
Fri, 2 May 2008 15:49:25 +0000 (15:49 +0000)
ChangeLog
dak/process_unchecked.py

index ec20bd15be29bd9b9450ec986c8dc9b1550cee42..770260030440e4424edf52c6a322de67f4601158 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-05-02  Thomas Viehmann  <tv@beamnet.de>
+
+       * dak/process_unchecked.py (check_hashes): fix typo in
+         checksum reject message.
+
 2008-05-02  Joerg Jaspert  <joerg@debian.org>
 
        * config/debian/extensions.py: used reindent.py from the python
index 6bbcf2dcc171e2ca99adb50991a13240b30a38d2..8bfc25cee1f9f6203e804af39c7ed8aa1180c582 100644 (file)
@@ -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))
 
 ################################################################################