Fixed the printout of extensions in the HTML output.

The printed data was using   instead of spaces when printing out all
extensions found. This resulted in the browser not being able to properly
separate rows.
This commit is contained in:
Adam Waldenberg 2013-05-08 18:26:25 +02:00
parent 10179d12ed
commit 00c0218896

View file

@ -43,14 +43,14 @@ class Extensions(Outputable):
def output_html(self):
if __located_extensions__:
extensions_xml = "<div><div class=\"box\">"
extensions_xml += "<p>" + __extensions_info_text__ + "&nbsp;(extensions used during statistical analysis are marked).</p><p>"
extensions_xml += "<p>" + __extensions_info_text__ + " (extensions used during statistical analysis are marked).</p><p>"
for i in __located_extensions__:
if i in __extensions__:
extensions_xml += "<strong>" + i + "</strong>"
else:
extensions_xml += i
extensions_xml += "&nbsp;"
extensions_xml += " "
extensions_xml += "</p></div></div>"
print(extensions_xml)