fixed bug in blog

This commit is contained in:
phixxy 2023-07-17 23:47:00 -07:00
parent d1c2ec4bc0
commit 16f1173fdd

View file

@ -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()