From d2117aed337628693f0d8bae04ab4ad4dee1e79c Mon Sep 17 00:00:00 2001 From: nex <53234499+EEKIM10@users.noreply.github.com> Date: Sat, 15 Oct 2022 15:24:20 +0100 Subject: [PATCH] Fix missing newline in timetable command --- cogs/timetable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/timetable.py b/cogs/timetable.py index b7c4912..406f887 100644 --- a/cogs/timetable.py +++ b/cogs/timetable.py @@ -166,7 +166,7 @@ class TimeTableCog(commands.Cog): start_datetime = date.replace(hour=lesson["start"][0], minute=lesson["start"][1]) end_datetime = date.replace(hour=lesson["end"][0], minute=lesson["end"][1]) text = f"{discord.utils.format_dt(start_datetime, 't')} to {discord.utils.format_dt(end_datetime, 't')}" \ - f":\n> Lesson Name: {lesson['name']!r}" \ + f":\n> Lesson Name: {lesson['name']!r}\n" \ f"> Tutor: **{lesson['tutor']}**\n> Room: `{lesson['room']}`" blocks.append(text) await ctx.respond("\n\n".join(blocks))