From 22268eed9de0da4feaad7292158ec3ac73f9e5c7 Mon Sep 17 00:00:00 2001 From: Michael H Date: Tue, 31 Dec 2019 16:01:51 -0500 Subject: [PATCH] Help newline... (#3247) * whee * change --- changelog.d/3247.misc.rst | 1 + redbot/core/commands/help.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelog.d/3247.misc.rst 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)