From fb5c4dfade0b3db63bd5003b27ce51e00ab8b182 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Fri, 14 Feb 2025 16:59:16 -0500 Subject: [PATCH] Update fc_block_decode.py add pre --- groundstation/fc_block_decode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/groundstation/fc_block_decode.py b/groundstation/fc_block_decode.py index dc21925e..975c8073 100644 --- a/groundstation/fc_block_decode.py +++ b/groundstation/fc_block_decode.py @@ -162,14 +162,14 @@ if __name__ == "__main__": with open(html_dir + "index.html", "w") as html_file: html_file.write(head_string) html_file.write(telem_string) - html_file.write("
") + html_file.write("
")
 									with open(html_dir + "/images/telem.csv.txt", "r") as csv_file:
 										for line in csv_file:
 											html_file.write(line)
 											html_file.write("
") tlm_string = fstr(csv_format) html_file.write(tlm_string) - html_file.write("
") + html_file.write("

") html_file.write(foot_string) else: print("Payload not an image!")