From e88edf0c3e567fbffbe9ae3ff45b5c2ed0702784 Mon Sep 17 00:00:00 2001 From: Ansgar Burchardt Date: Thu, 24 Mar 2011 08:28:19 +0000 Subject: [PATCH] process-upload: Dinstall::LintianTags may not be set Handle the case when Dinstall::LintianTags is not set correctly. Signed-off-by: Ansgar Burchardt --- daklib/queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daklib/queue.py b/daklib/queue.py index b4c62d38..57a07cb2 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -1495,7 +1495,7 @@ class Upload(object): # If we do not have a tagfile, don't do anything tagfile = cnf.get("Dinstall::LintianTags") - if tagfile is None: + if not tagfile: return # Parse the yaml file -- 2.39.2