]> git.decadent.org.uk Git - dak.git/commitdiff
catch more UnknownFormatError
authorThomas Viehmann <tv@beamnet.de>
Thu, 19 Jun 2008 19:05:54 +0000 (19:05 +0000)
committerThomas Viehmann <tv@beamnet.de>
Thu, 19 Jun 2008 19:05:54 +0000 (19:05 +0000)
ChangeLog
dak/process_unchecked.py

index dfc63f89cd16ae59ce5d6f34b3aa03b0a7cdb94d..62e73f0cdc1192ad7b37b40688994868a8543e1a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,7 @@
 2008-06-19  Thomas Viehmann  <tv@beamnet.de>
 
-       * dak/process_unchecked.py (check_dsc): Catch UnknownFormatError
-       and reject
+       * dak/process_unchecked.py (check_dsc,check_hashes): Catch
+       UnknownFormatError and reject
 
 2008-06-15  Joerg Jaspert  <joerg@debian.org>
 
index 9bd8197e598e7f50745446fcde19be07d218bf3e..f2efe8c0393439dbfe812bd542e30514d240845c 100755 (executable)
@@ -951,6 +951,8 @@ def check_hashes ():
             check_hash(".changes %s" % (h), fs, h, f, files)
         except NoFilesFieldError:
             reject("No Checksums-%s: field in .changes" % (h))
+        except UnknownFormatError, format:
+            reject("%s: unknown format of .changes" % (format))
         except ParseChangesError, line:
             reject("parse error for Checksums-%s in .changes, can't grok: %s." % (h, line))
 
@@ -959,6 +961,8 @@ def check_hashes ():
         try:
             fs = utils.build_file_list(dsc, 1, "checksums-%s" % h, h)
             check_hash(".dsc %s" % (h), fs, h, f, dsc_files)
+        except UnknownFormatError, format:
+            reject("%s: unknown format of .dsc" % (format))
         except NoFilesFieldError:
             reject("No Checksums-%s: field in .dsc" % (h))
         except ParseChangesError, line: