From 232ca831ae388efcda5e4fd2f4fe23b8a689899c Mon Sep 17 00:00:00 2001 From: Juni Date: Mon, 11 Apr 2022 09:54:09 -0400 Subject: [PATCH] timestamp --- reactquote/reactquote.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/reactquote/reactquote.py b/reactquote/reactquote.py index acc0b11..4e435fd 100644 --- a/reactquote/reactquote.py +++ b/reactquote/reactquote.py @@ -12,12 +12,10 @@ class ReactQuote(commands.Cog): return msg def _buildQuote(self): - embed = discord.Embed() quote = "Quoted text will be here\n- @Juni [(Jump)](https://discord.com/channels/898593470606889000/929701114641809438/963069688177360927)" + timestamp = datetime.now() + embed = discord.Embed(timestamp=timestamp) embed.add_field(name="#1", value=quote, inline=False) - time = datetime.now() - footer = "" - embed.set_footer(text=footer) return embed @commands.command()