]> git.decadent.org.uk Git - dak.git/commitdiff
"Format: 0.0" is now invalid
authorChris Lamb <lamby@debian.org>
Wed, 28 Oct 2009 11:06:14 +0000 (11:06 +0000)
committerChris Lamb <lamby@debian.org>
Wed, 28 Oct 2009 13:38:57 +0000 (13:38 +0000)
Signed-off-by: Chris Lamb <lamby@debian.org>
daklib/srcformats.py
tests/test_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:
index 834a30b4fedf7c716b7fff9e90f9a96cde186d5d..802f0ffb688e29ad223760e569213c68c5b3dbe7 100755 (executable)
@@ -141,7 +141,7 @@ class ParseSourceFormat(ParseFormat):
         self.assertFormat('1.0', (1, 0))
 
     def testZero(self):
-        self.assertFormat('0.0', (0, 0))
+        self.assertInvalidFormat('0.0')
 
     def testNative(self):
         self.assertFormat('3.0 (native)', (3, 0, 'native'))