mirror of
https://github.com/ejwa/gitinspector.git
synced 2025-01-03 11:22:15 +01:00
HTMLEmbedded output was broken in the blame module.
This commit is contained in:
parent
863d5edce4
commit
d513ba530d
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ class BlameOutput(Outputable):
|
||||||
if format.get_selected() == "html":
|
if format.get_selected() == "html":
|
||||||
blame_xml += "<td><img src=\"{0}\"/>{1}</td>".format(gravatar.get_url(author_email), entry[0])
|
blame_xml += "<td><img src=\"{0}\"/>{1}</td>".format(gravatar.get_url(author_email), entry[0])
|
||||||
else:
|
else:
|
||||||
blame_xml += "<td>" + authorname + "</td>"
|
blame_xml += "<td>" + entry[0] + "</td>"
|
||||||
|
|
||||||
blame_xml += "<td>" + str(entry[1].rows) + "</td>"
|
blame_xml += "<td>" + str(entry[1].rows) + "</td>"
|
||||||
blame_xml += "<td>" + "{0:.2f}".format(100.0 * entry[1].comments / entry[1].rows) + "</td>"
|
blame_xml += "<td>" + "{0:.2f}".format(100.0 * entry[1].comments / entry[1].rows) + "</td>"
|
||||||
|
|
Loading…
Reference in a new issue