From 5611f7abe7e58f6998011cb52455affae543f2aa Mon Sep 17 00:00:00 2001 From: bobloy Date: Fri, 9 Oct 2020 13:55:14 -0400 Subject: [PATCH] Don't commit before testing --- lseen/lseen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lseen/lseen.py b/lseen/lseen.py index 0aff69c..69bcf87 100644 --- a/lseen/lseen.py +++ b/lseen/lseen.py @@ -83,7 +83,7 @@ class LastSeen(Cog): # description="{} was last seen at this date and time".format(member.display_name), # timestamp=last_seen) - embed = discord.Embed(timestamp=last_seen, color=self.bot.get_embed_color(ctx)) + embed = discord.Embed(timestamp=last_seen, color=await self.bot.get_embed_color(ctx)) await ctx.send(embed=embed) @commands.Cog.listener()