From 95c449d8f5be7537df54e8ef9dcbd2dc94ea3829 Mon Sep 17 00:00:00 2001 From: Juni Date: Mon, 11 Apr 2022 10:13:23 -0400 Subject: [PATCH] test --- reactquote/reactquote.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactquote/reactquote.py b/reactquote/reactquote.py index 24e52e1..5dcc266 100644 --- a/reactquote/reactquote.py +++ b/reactquote/reactquote.py @@ -13,7 +13,7 @@ class ReactQuote(commands.Cog): def _buildQuote(self, message:discord.Message): - quote = "Quoted text will be here\n {message.jump_url}" + quote = f"Quoted text will be here\n[(Jump)]({message.jump_url})" timestamp = datetime.now() embed = discord.Embed(timestamp=timestamp) embed.set_author(name=message.author.display_name, icon_url=message.author.avatar_url) @@ -33,4 +33,4 @@ class ReactQuote(commands.Cog): message: discord.Message = await self.bot.get_channel(payload.channel_id).fetch_message(payload.message_id) user = payload.member channel: discord.TextChannel = message.channel - await channel.send("I'd quote that if I could...\n{message.jump_url}") + await channel.send("I'd quote that if I could...")