X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=utils.py;fp=utils.py;h=c2424cf768933101f6901289d96d000b90f2802a;hb=72854d117ff4a60b56f7d1b3efebad03ed22675a;hp=2b40501cfac2bf6e59298578800cbf7a1a7a45e5;hpb=2c4d37f58a7a3923a27a56a0e391bd4b1aecad4f;p=dak.git diff --git a/utils.py b/utils.py index 2b40501c..c2424cf7 100644 --- a/utils.py +++ b/utils.py @@ -2,7 +2,7 @@ # Utility functions # Copyright (C) 2000, 2001, 2002, 2003, 2004 James Troup -# $Id: utils.py,v 1.61 2004-01-21 03:20:52 troup Exp $ +# $Id: utils.py,v 1.62 2004-01-21 03:48:58 troup Exp $ ################################################################################ @@ -45,7 +45,7 @@ re_parse_maintainer = re.compile(r"^\s*(\S.*\S)\s*\<([^\> \t]+)\>"); changes_parse_error_exc = "Can't parse line in .changes file"; invalid_dsc_format_exc = "Invalid .dsc file"; nk_format_exc = "Unknown Format: in .changes file"; -no_files_exc = "No Files: field in .dsc file."; +no_files_exc = "No Files: field in .dsc or .changes file."; cant_open_exc = "Can't read file."; unknown_hostname_exc = "Unknown hostname"; cant_overwrite_exc = "Permission denied; can't overwrite existent file." @@ -176,8 +176,8 @@ def parse_changes(filename, dsc_whitespace_rules=0): if line.startswith("-----BEGIN PGP SIGNATURE"): break; if line.startswith("-----BEGIN PGP SIGNED MESSAGE"): + inside_signature = 1; if dsc_whitespace_rules: - inside_signature = 1; while index < num_of_lines and line != "": index += 1; line = indexed_lines[index];