From b862411fd2cf9118eb4b595caeefb59feda6cc44 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Sun, 1 May 2022 10:13:07 -0600 Subject: [PATCH] Fix output on update --- jarvis/cogs/botutil.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jarvis/cogs/botutil.py b/jarvis/cogs/botutil.py index 5164f1b..2228c9c 100644 --- a/jarvis/cogs/botutil.py +++ b/jarvis/cogs/botutil.py @@ -197,10 +197,9 @@ class BotutilCog(Scale): embed = build_embed( "Update Status", description="Updates have been applied", fields=fields ) - embed.set_footer(text=remote_hash) self.logger.info("Updates applied") - await ctx.reply(f"File Changes: ```ansi\n{capture.get()}\n```", embed=embed) + await ctx.reply(f"```ansi\n{capture.get()}\n```", embed=embed) else: embed = build_embed(title="Update Status", description="No changes applied", fields=[])