diff options
| author | Rapptz <[email protected]> | 2017-03-21 15:36:52 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-03-21 15:36:52 -0400 |
| commit | 31a70934330c115fe068208d3dd1015b7f7da967 (patch) | |
| tree | c03aade206e01a7595cb03f3b6b8fd13cb51affe | |
| parent | Aggregate shard closing futures instead of doing them sequentially. (diff) | |
| download | discord.py-31a70934330c115fe068208d3dd1015b7f7da967.tar.xz discord.py-31a70934330c115fe068208d3dd1015b7f7da967.zip | |
[commands] Fix minor spacing issue in Command.signature
| -rw-r--r-- | discord/ext/commands/core.py | 2 |
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 |