Remove stray <ul>

This commit is contained in:
Jaculabilis 2017-12-11 00:34:41 -06:00
parent 80f42be74d
commit 1f721678a4
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ def build_contents_page(articles, config):
# Article counts # Article counts
phantom_count = len([article for article in articles if article.author is None]) phantom_count = len([article for article in articles if article.author is None])
if phantom_count == 0: if phantom_count == 0:
content = "<p>There are <b>{0}</b> entries in this lexicon.</p>\n<ul>\n".format(len(articles)) content = "<p>There are <b>{0}</b> entries in this lexicon.</p>\n".format(len(articles))
else: else:
content = "<p>There are <b>{0}</b> entries, <b>{1}</b> written and <b>{2}</b> phantom.</p>\n".format( content = "<p>There are <b>{0}</b> entries, <b>{1}</b> written and <b>{2}</b> phantom.</p>\n".format(
len(articles), len(articles) - phantom_count, phantom_count) len(articles), len(articles) - phantom_count, phantom_count)