From 756506bd252ae9248108f822324750ac6867fbc3 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 28 Feb 2023 03:45:26 -0500 Subject: [PATCH] fixed footer --- galaxy/galaxy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index 7bee494..b42f13a 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -12,7 +12,8 @@ class Galaxy(commands.Cog): async def unix(self, ctx): """Posts the current Unix timestamp.""" timestamp = int(datetime.timestamp(datetime.now())) - embed=discord.Embed(title="Current Time", color=await self.bot.get_embed_color(None), description=f"", footer=f"{timestamp}") + embed=discord.Embed(title="Current Time", color=await self.bot.get_embed_color(None), description=f"") + embed.set_footer(text=f"{timestamp}") await ctx.send(embed=embed)