From aa2cdf594892b563f3d8ba24aa4f04d43a85e331 Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Thu, 18 Aug 2022 18:34:51 +0100 Subject: Don't output command name twice in help command --- bot/exts/core/help.py | 1 - 1 file changed, 1 deletion(-) (limited to 'bot/exts/core/help.py') diff --git a/bot/exts/core/help.py b/bot/exts/core/help.py index 7d8066df..7384c27d 100644 --- a/bot/exts/core/help.py +++ b/bot/exts/core/help.py @@ -316,7 +316,6 @@ class HelpSession: paginator.add_line(f"**```\n{prefix}{signature}\n```**") parent = self.query.full_parent_name + " " if self.query.parent else "" - paginator.add_line(f"**```\n{prefix}{parent}{signature}\n```**") aliases = [f"`{alias}`" if not parent else f"`{parent}{alias}`" for alias in self.query.aliases] aliases += [f"`{alias}`" for alias in getattr(self.query, "root_aliases", ())] aliases = ", ".join(sorted(aliases)) -- cgit v1.2.3