From: Anthony Towns Date: Wed, 5 Dec 2007 07:23:26 +0000 (+0000) Subject: process_unchecked: fix bug when dealing with unrecognised file types in .dsc Files: X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=0a4c0c8b6f231bf36f0318a484e4ab5f037b40d0;p=dak.git process_unchecked: fix bug when dealing with unrecognised file types in .dsc Files: --- diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index 77e5f00a..c4ebd994 100755 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -757,6 +757,7 @@ def check_dsc(): m = daklib.utils.re_issource.match(f) if not m: reject("%s: %s in Files field not recognised as source." % (dsc_filename, f)) + continue type = m.group(3) if type == "orig.tar.gz" or type == "tar.gz": has_tar = 1