From: James Troup Date: Sun, 19 May 2002 02:00:03 +0000 (+0000) Subject: parse_changes and build_file_list 2nd argument sanity changes X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7f433fc80983b63e7a995c1aa7f4ef4d5552a69;p=dak parse_changes and build_file_list 2nd argument sanity changes --- diff --git a/tea b/tea index b6a28095..9d89bbce 100755 --- a/tea +++ b/tea @@ -2,7 +2,7 @@ # Sanity check the database # Copyright (C) 2000, 2001, 2002 James Troup -# $Id: tea,v 1.18 2002-05-08 11:13:02 troup Exp $ +# $Id: tea,v 1.19 2002-05-19 02:00:03 troup Exp $ # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -100,7 +100,7 @@ def check_dscs(): for line in list_file.readlines(): file = line[:-1]; try: - utils.parse_changes(file, 1); + utils.parse_changes(file, dsc_whitespace_rules=1); except utils.invalid_dsc_format_exc, line: utils.warn("syntax error in .dsc file '%s', line %s." % (file, line)); count = count + 1; @@ -230,10 +230,10 @@ def check_missing_tar_gz_in_dsc(): filename = os.path.abspath(i[0] + i[1]); try: # NB: don't enforce .dsc syntax - dsc = utils.parse_changes(filename, 0); + dsc = utils.parse_changes(filename); except: utils.fubar("error parsing .dsc file '%s'." % (filename)); - dsc_files = utils.build_file_list(dsc, 1); + dsc_files = utils.build_file_list(dsc, is_a_dsc=1); has_tar = 0; for file in dsc_files.keys(): m = utils.re_issource.match(file);