]> git.decadent.org.uk Git - dak.git/blobdiff - daklib/srcformats.py
"Format: 0.0" is now invalid
[dak.git] / daklib / srcformats.py
index d6079a0f5df6a9067445b5d366d4a4e51865b5ac..60da5bc0d7305e92a4e3b8c968caf2a247e0c99e 100644 (file)
@@ -42,9 +42,7 @@ class SourceFormat(type):
             format = format[:2]
 
         if is_a_dsc:
-            # format = (0,0) are missing format headers of which we still
-            # have some in the archive.
-            if format != (1,0) and format != (0,0) and \
+            if format != (1,0) and \
                format != (3,0,"quilt") and format != (3,0,"native"):
                 raise UnknownFormatError, txt
         else: