Use correct tag type

This commit is contained in:
Sajith Sasidharan 2020-07-07 20:45:30 -04:00
parent 0c4d24a2ac
commit 7757756a41
1 changed files with 1 additions and 1 deletions

View File

@ -698,7 +698,7 @@ class DownloadStatusElement(Element):
server_problems = self.download_results().server_problems
if not server_problems:
return ""
ul = T.ul()
ul = tags.ul()
for peerid in sorted(server_problems.keys()):
peerid_s = idlib.shortnodeid_b2a(peerid)
ul(tags.li("[%s]: %s" % (peerid_s, server_problems[peerid])))