From 747601e9525db1303ceed5eee0b04599c9ad3b7e Mon Sep 17 00:00:00 2001 From: Wilbur <swilbur@igskci164lm017.gs.doi.net> Date: Thu, 9 Feb 2023 08:31:30 -0700 Subject: [PATCH] Updated the script to create a new line following the last line of any information pertianing to body summary. Should prevent other files from being concatonated to the end of a previous line. --- geomagio/processing/monitor.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/geomagio/processing/monitor.py b/geomagio/processing/monitor.py index d1aa4cae..ab2e540d 100755 --- a/geomagio/processing/monitor.py +++ b/geomagio/processing/monitor.py @@ -78,7 +78,7 @@ def get_gaps(gaps): if i == len(gaps) - 1: gap_string += "</span>\n" gap_string += "</details>\n" - + else: gap_string = " None<br>" return gap_string @@ -183,7 +183,6 @@ def print_html_header(starttime, endtime, title): + "<title> %s \n to %s \n</title>" % (format_time(starttime), format_time(endtime)) + "</head>\n" - + "<br>\n" + "<body>\n" + '<style type="text/css">\n' + "table {border-collapse: collapse;}\n" @@ -323,7 +322,7 @@ def generate_report( location_code=location_code, warning_threshold=warning_threshold, ) - print("</body>\n" + "</html>\n") + print("<br>\n" + "<br>\n" + "</body>\n" + "</html>\n") sys.exit(warning_issued) -- GitLab