From: Chris Lamb Date: Thu, 29 Oct 2009 13:36:30 +0000 (+0000) Subject: Don't reject orig tarballs - we want them X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dcb51800ee2347af8d35fb7a51811db1cef6b93b;p=dak Don't reject orig tarballs - we want them Signed-off-by: Chris Lamb --- diff --git a/daklib/queue.py b/daklib/queue.py index 9c12d1e2..0b45b284 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -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