From d5cda9c583aa0b362b512a90b900dd7e287647ef Mon Sep 17 00:00:00 2001 From: Cyrus Yip Date: Sat, 25 Mar 2023 15:13:39 -0700 Subject: [PATCH] strip help command title --- cogs/utility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/utility.py b/cogs/utility.py index 245060c22b..f1554455bb 100644 --- a/cogs/utility.py +++ b/cogs/utility.py @@ -142,7 +142,7 @@ async def _get_help_embed(self, topic): perm_level = "NONE" embed = discord.Embed( - title=f"`{self.get_command_signature(topic)}`", + title=f"`{self.get_command_signature(topic).strip()}`", color=self.context.bot.main_color, description=self.process_help_msg(topic.help), )