From fda6b3aae201e296800179457db880766d5e1fd0 Mon Sep 17 00:00:00 2001 From: phxntxm Date: Mon, 8 Oct 2018 19:29:20 -0500 Subject: [PATCH] Remove ljust --- cogs/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/misc.py b/cogs/misc.py index 19d17ad..3a9c5dd 100644 --- a/cogs/misc.py +++ b/cogs/misc.py @@ -75,7 +75,7 @@ class Miscallaneous: chunks[len(chunks) - 1] += tmp elif isinstance(entity, (commands.core.Command, commands.core.Group)): tmp = "**{}**".format(self._command_signature(entity)) - tmp += "\n{}".format(entity.help.ljust(4)) + tmp += "\n{}".format(entity.help) chunks.append(tmp) else: cmds = sorted(ctx.bot.get_cog_commands(entity.__class__.__name__), key=lambda c: c.name)