diff --git a/changelog.d/3247.misc.rst b/changelog.d/3247.misc.rst new file mode 100644 index 000000000..602c82ca5 --- /dev/null +++ b/changelog.d/3247.misc.rst @@ -0,0 +1 @@ +minor help formatting fix diff --git a/redbot/core/commands/help.py b/redbot/core/commands/help.py index cc3e087e3..2f2d0b359 100644 --- a/redbot/core/commands/help.py +++ b/redbot/core/commands/help.py @@ -343,7 +343,7 @@ class RedHelpFormatter: embed = discord.Embed(color=color, **embed_dict["embed"]) if page_count > 1: - description = f"{embed.description} *Page {i} of {page_count}*" + description = f"*Page {i} of {page_count}*\n{embed.description}" embed.description = description embed.set_author(**author_info)