Fixed templates for HTML reports

svn: r1385
This commit is contained in:
Don Allingham 2003-03-23 04:16:29 +00:00
parent e2d89c8f90
commit 5937b027b6
2 changed files with 2 additions and 2 deletions

View File

@ -311,6 +311,7 @@ class HtmlDoc(TextDoc.TextDoc):
for line in self.bottom: for line in self.bottom:
self.f.write(self.process_line(line)) self.f.write(self.process_line(line))
self.f.close() self.f.close()
self.write_support_files()
def write_support_files(self): def write_support_files(self):
if self.map: if self.map:

View File

@ -74,7 +74,7 @@ def by_date(a,b):
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
# HtmlLickDoc # HtmlLinkDoc
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
class HtmlLinkDoc(HtmlDoc.HtmlDoc): class HtmlLinkDoc(HtmlDoc.HtmlDoc):
@ -738,7 +738,6 @@ class WebReport(Report.Report):
col_len = col_len - 1 col_len = col_len - 1
doc.write_raw('</td></tr></table>') doc.write_raw('</td></tr></table>')
doc.close() doc.close()
doc.write_support_files()
def write_report(self): def write_report(self):
dir_name = self.target_path dir_name = self.target_path