]> git.decadent.org.uk Git - dak.git/commitdiff
Fix use of "wayout" name.
authorChris Lamb <lamby@debian.org>
Tue, 27 Oct 2009 20:02:53 +0000 (20:02 +0000)
committerChris Lamb <lamby@debian.org>
Tue, 27 Oct 2009 20:02:53 +0000 (20:02 +0000)
Signed-off-by: Chris Lamb <lamby@debian.org>
daklib/queue.py

index fdd516414e155bc6a0b09ce25d0c0851c7bf5de6..e43ffaf819d06223f7ee767295e047ceb1fe62de 100755 (executable)
@@ -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))
 
     ###########################################################################