diff --git a/py-scripts/lf_report.py b/py-scripts/lf_report.py index 5bd239f2..b192d276 100755 --- a/py-scripts/lf_report.py +++ b/py-scripts/lf_report.py @@ -402,6 +402,29 @@ class lf_report(): """ self.html += self.footer_html + def build_footer_no_png(self): + self.footer_html = """ + + +
+ + + + """ + self.html += self.footer_html + + def build_custom(self): self.html += self.custom_html @@ -467,7 +490,8 @@ if __name__ == "__main__": report.build_table() #report.build_all() - report.build_footer() + #report.build_footer() + report.build_footer_no_png() html_file = report.write_html() print("returned file ") diff --git a/py-scripts/tools/lf_check.py b/py-scripts/tools/lf_check.py index 180d3569..70783439 100755 --- a/py-scripts/tools/lf_check.py +++ b/py-scripts/tools/lf_check.py @@ -998,6 +998,7 @@ Example : html_results = check.get_html_results() report.set_custom_html(html_results) report.build_custom() + report.build_footer_no_png() html_report = report.write_html_with_timestamp() print("html report: {}".format(html_report)) try: