From: Chris Lamb Date: Tue, 27 Oct 2009 20:02:53 +0000 (+0000) Subject: Fix use of "wayout" name. X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;ds=sidebyside;h=5c2d46bd0b20065ed39a7d6f12b058a40d879901;hp=5f87af9224fdde4fa1607e40a2544b1305f74487;p=dak.git Fix use of "wayout" name. Signed-off-by: Chris Lamb --- diff --git a/daklib/queue.py b/daklib/queue.py index fdd51641..e43ffaf8 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -1279,7 +1279,7 @@ class Upload(object): # Tag is known, it is not overriden, direct reject. self.rejects.append("%s: Found lintian output: '%s %s', automatically rejected package." % (epackage, etag, etext)) # Now tell if they *might* override it. - if etag in lintiantags['wayout']: + if etag in lintiantags['warning']: self.rejects.append("%s: If you have a good reason, you may override this lintian tag. Laziness to fix your crap is NOT A GOOD REASON, sod off" % (epackage)) ###########################################################################