diff --git a/joint_teapot/utils/joj3.py b/joint_teapot/utils/joj3.py index ea9b087..64e9941 100644 --- a/joint_teapot/utils/joj3.py +++ b/joint_teapot/utils/joj3.py @@ -201,16 +201,16 @@ def generate_title_and_comment( for result in stage["results"] ): continue - comment += f"## {stage['name']}\n" + comment += f"## {stage['name']}" force_quit = stage["force_quit"] if force_quit: - comment += " - Failed" + comment += " - Fatal Error" comment += "\n" for i, result in enumerate(stage["results"]): - comment += "
" + comment += "
\n" comment += f"Case {i} - Score: {result['score']}\n" if result["comment"].strip() != "": - comment += f"\n{result['comment']}\n" + comment += f"\n{result['comment']}\n\n" comment += "
\n\n" total_score += result["score"] comment += "\n"