]> git.decadent.org.uk Git - dak.git/commitdiff
Don't reject orig tarballs - we want them
authorChris Lamb <lamby@debian.org>
Thu, 29 Oct 2009 13:36:30 +0000 (13:36 +0000)
committerChris Lamb <lamby@debian.org>
Thu, 29 Oct 2009 13:36:30 +0000 (13:36 +0000)
Signed-off-by: Chris Lamb <lamby@debian.org>
daklib/queue.py

index 9c12d1e2fb5a9a11e857bcde4989c1cd54bc4618..0b45b284a0c0296de59f43b918501efe9110c03e 100755 (executable)
@@ -1212,7 +1212,7 @@ class Upload(object):
         # Try and find all orig mentioned in the .dsc
         target_dir = '.'
         for filename, entry in self.pkg.dsc_files.iteritems():
-            if re_is_orig_source.match(filename):
+            if not re_is_orig_source.match(filename):
                 # File is not an orig; ignore
                 continue