diff options
author | 2019-10-12 16:48:42 +1100 | |
---|---|---|
committer | 2019-10-12 16:48:42 +1100 | |
commit | 87f9fdda65e7a9c425e727b766d57dda2ce5a364 (patch) | |
tree | 2ae77d79f0a36ae71476f78f9cee30760cdf3902 | |
parent | Refactor the `Help` command. (diff) |
Minor formatting changes to align with current help.
-rw-r--r-- | bot/cogs/help.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/help.py b/bot/cogs/help.py index 16fd62154..dd19dffd3 100644 --- a/bot/cogs/help.py +++ b/bot/cogs/help.py @@ -190,7 +190,7 @@ class CustomHelpCommand(HelpCommand): # check if the user is allowed to run this command if not await command.can_run(self.context): - fmt += "**You cannot run this command.**" + fmt += "***You cannot run this command.***\n\n" fmt += f"*{command.help or 'No details provided.'}*\n" embed.description = fmt @@ -239,7 +239,7 @@ class CustomHelpCommand(HelpCommand): lines = [ f"`{PREFIX}{c.qualified_name}{f' {c.signature}' if c.signature else ''}`" - f"\n*{c.short_doc or 'No details provided.'}*\n" for c in _commands + f"\n*{c.short_doc or 'No details provided.'}*" for c in _commands ] embed.description += "\n".join(n for n in lines) |