From 672a60da400e853fcb3e06c49cb2a8e852e910bf Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 28 Aug 2023 22:25:43 -0400 Subject: [PATCH] fix(suggestions): fixed missing `)` --- suggestions/suggestions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suggestions/suggestions.py b/suggestions/suggestions.py index b75c3ee..b3e17ff 100644 --- a/suggestions/suggestions.py +++ b/suggestions/suggestions.py @@ -189,7 +189,7 @@ class Suggestions(commands.Cog): content = old_msg.content approved = "Approved" if approve else "Denied" embed.title = f"Suggestion {approved} (#{suggestion_id})" - footer = [f"{approved} by {self.check_discrim(author)} • ({author.id}", + footer = [f"{approved} by {self.check_discrim(author)} • ({author.id})", author.display_avatar.replace(format="png", size=512)] embed.set_footer( text=footer[0],