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!")