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 <adam@adam-barratt.org.uk>
master
Adam D. Barratt 13 years ago
parent 1b0a85d879
commit a4f91cce41

@ -159,6 +159,6 @@ class Excuse(object):
if n not in self.deps:
res += "<li>Ignoring %s depends: <a href=\"#%s\">%s</a>\n" % (a, n, n)
if self.is_valid:
res += "<li>Valid candidate</li>\n"
res += "<li>Valid candidate\n"
res = res + "</ul>\n"
return res

Loading…
Cancel
Save