From dcb51800ee2347af8d35fb7a51811db1cef6b93b Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Thu, 29 Oct 2009 13:36:30 +0000 Subject: [PATCH] Don't reject orig tarballs - we want them Signed-off-by: Chris Lamb --- daklib/queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5