From 31a70934330c115fe068208d3dd1015b7f7da967 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 21 Mar 2017 15:36:52 -0400 Subject: [PATCH] [commands] Fix minor spacing issue in Command.signature --- discord/ext/commands/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index bca52ad36..04149b2a1 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -553,7 +553,7 @@ class Command: aliases = '|'.join(self.aliases) fmt = '[%s|%s]' % (self.name, aliases) if parent: - fmt = parent + fmt + fmt = parent + ' ' + fmt result.append(fmt) else: name = self.name if not parent else parent + ' ' + self.name