X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Futils.py;h=9f244963dc7cdf8e6ac29e24b350197e11ac240e;hb=c6e4df0a3357a7c08ff1cc0e94a7d978a0f1bdaf;hp=23c6318dfaa3ec9a0c9d800a77dc2253b4444895;hpb=1b90033dfa9bfaa5f915253882a9ba94d4f96771;p=dak.git diff --git a/daklib/utils.py b/daklib/utils.py index 23c6318d..9f244963 100755 --- a/daklib/utils.py +++ b/daklib/utils.py @@ -536,10 +536,10 @@ def build_file_list(changes, is_a_dsc=0, field="files", hashname="md5sum"): format = format[:2] if is_a_dsc: - # format = (1,0) are the only formats we currently accept, # format = (0,0) are missing format headers of which we still # have some in the archive. - if format != (1,0) and format != (0,0): + if format != (1,0) and format != (0,0) and \ + format != (3,0,"quilt") and format != (3,0,"native"): raise UnknownFormatError, "%s" % (changes.get("format","0.0")) else: if (format < (1,5) or format > (1,8)):