From 631e89a0de193313f5125866f2552a473c25e492 Mon Sep 17 00:00:00 2001 From: phixxy Date: Wed, 20 Mar 2024 00:11:49 -0700 Subject: [PATCH] added blog title to output --- cogs/phixxycom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/phixxycom.py b/cogs/phixxycom.py index 055964a..000322e 100644 --- a/cogs/phixxycom.py +++ b/cogs/phixxycom.py @@ -293,7 +293,7 @@ class PhixxyCom(commands.Cog): await self.upload_sftp(filename, (os.getenv('ftp_public_html') + 'ai-blog/'), "index.html") run_time = time.time() - start_time self.logger.debug("It took " + str(run_time) + " seconds to generate the blog post!") - output = "Blog Updated! (" + str(run_time) + " seconds) https://ai.phixxy.com/ai-blog" + output = f"Blog Updated! ({run_time} seconds) {title} https://ai.phixxy.com/ai-blog" return output @commands.command()