From 16f1173fdd593a7c80fb302de28fa9f32ec941d5 Mon Sep 17 00:00:00 2001 From: phixxy Date: Mon, 17 Jul 2023 23:47:00 -0700 Subject: [PATCH] fixed bug in blog --- sparkytron3000.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sparkytron3000.py b/sparkytron3000.py index 543616c..fbb5d2e 100644 --- a/sparkytron3000.py +++ b/sparkytron3000.py @@ -712,7 +712,7 @@ async def blog(ctx, *args): else: blogpost_file = "databases/blog_topics.txt" with open(blogpost_file, 'a') as f: - f.writelines(message) + f.writelines(message+'\n') await ctx.send("Saved suggestion!") @bot.command()