From de1afc8291a50906ffc8e12b6cbe3dd49fa1afe5 Mon Sep 17 00:00:00 2001 From: phixxy Date: Mon, 18 Sep 2023 23:34:55 -0700 Subject: [PATCH] Fixed bug I just created in negative_prompt --- sparkytron3000.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sparkytron3000.py b/sparkytron3000.py index f68abbf..4da91f4 100644 --- a/sparkytron3000.py +++ b/sparkytron3000.py @@ -771,7 +771,7 @@ async def negative_prompt(ctx, *args): neg_prompt_file = "databases/negative_prompt.txt" with open(neg_prompt_file, 'w') as f: f.writelines(message) - await ctx.send("Changed negative prompt to", message) + await ctx.send("Changed negative prompt to " + message) @bot.command() async def generate_blog(ctx):