aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2017-03-21 15:36:52 -0400
committerRapptz <[email protected]>2017-03-21 15:36:52 -0400
commit31a70934330c115fe068208d3dd1015b7f7da967 (patch)
treec03aade206e01a7595cb03f3b6b8fd13cb51affe
parentAggregate shard closing futures instead of doing them sequentially. (diff)
downloaddiscord.py-31a70934330c115fe068208d3dd1015b7f7da967.tar.xz
discord.py-31a70934330c115fe068208d3dd1015b7f7da967.zip
[commands] Fix minor spacing issue in Command.signature
-rw-r--r--discord/ext/commands/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py
index bca52ad3..04149b2a 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