diff --git a/redbot/core/commands/help.py b/redbot/core/commands/help.py index a86b16bb5ab..8ad7f4c5f3e 100644 --- a/redbot/core/commands/help.py +++ b/redbot/core/commands/help.py @@ -352,11 +352,10 @@ async def format_command_help( description = command.description or "" tagline = self.format_tagline(ctx, help_settings.tagline) or self.get_default_tagline(ctx) - signature = _("Syntax: {command_signature}").format( - command_signature=self.get_command_signature(ctx, command) - ) + signature = self.get_command_signature(ctx, command) aliases = command.aliases + sig_description = bold(_("Syntax:\n")) + box(signature) if help_settings.show_aliases and aliases: alias_fmt = _("Aliases") if len(command.aliases) > 1 else _("Alias") aliases = sorted(aliases, key=len) @@ -386,7 +385,7 @@ async def format_command_help( aliases_content = _("{aliases} and one more alias.").format( aliases=aliases_formatted_list ) - signature += f"\n{alias_fmt}: {aliases_content}" + sig_description += bold(f"{alias_fmt}:") + box(f"{aliases_content}") subcommands = None if hasattr(command, "all_commands"): @@ -400,7 +399,7 @@ async def format_command_help( emb["embed"]["title"] = f"*{description[:250]}*" emb["footer"]["text"] = tagline - emb["embed"]["description"] = box(signature) + emb["embed"]["description"] = sig_description command_help = command.format_help_for_context(ctx) if command_help: