From a4f91cce41dac328ea62468fcfac360c8f577bcf Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Sun, 8 Jan 2012 12:34:55 +0000 Subject: [PATCH] Drop closing li tag from "valid candidate" messages Although it's technically correct, none of the other messages include closing tags, and at least grep-excuses isn't prepared to deal with closing tags. Signed-off-by: Adam D. Barratt --- excuse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/excuse.py b/excuse.py index 5074706..b78d221 100644 --- a/excuse.py +++ b/excuse.py @@ -159,6 +159,6 @@ class Excuse(object): if n not in self.deps: res += "
  • Ignoring %s depends: %s\n" % (a, n, n) if self.is_valid: - res += "
  • Valid candidate
  • \n" + res += "
  • Valid candidate\n" res = res + "\n" return res