From a7091b9ef66a1bbe05352ef6513f229ada061376 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Sun, 1 May 2022 10:06:47 -0600 Subject: [PATCH] Add hash to embed footer on updates --- jarvis/cogs/botutil.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jarvis/cogs/botutil.py b/jarvis/cogs/botutil.py index b1c30ea..5164f1b 100644 --- a/jarvis/cogs/botutil.py +++ b/jarvis/cogs/botutil.py @@ -197,6 +197,7 @@ 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)