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>
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))
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: