X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fqueue.py;h=5ce068d8b06e771175d749f962d0036ba10aa401;hb=8411f360a7de4a3c7c7e798d1fb4f4eaeb8edff8;hp=24fd526c8b55fe0b65c9f2e241cacda347857e26;hpb=8d80c0b7332fed1ce16620faa1e5efbe75d13989;p=dak.git diff --git a/daklib/queue.py b/daklib/queue.py index 24fd526c..5ce068d8 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -1382,10 +1382,12 @@ class Upload(object): else: # Tag is known, it is not overriden, direct reject. self.rejects.append("%s: Found lintian output: '%s %s', automatically rejected package." % (epackage, etag, etext)) - log("auto rejecting", etag) # Now tell if they *might* override it. if etag in lintiantags['warning']: + log("auto rejecting", "overridable", etag) self.rejects.append("%s: If you have a good reason, you may override this lintian tag." % (epackage)) + else: + log("auto rejecting", "not overridable", etag) ########################################################################### def check_urgency(self):