From ee258bc62f231a91f5c0737fba65b7807c2a0a81 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Fri, 8 Jun 2018 14:53:06 -0800 Subject: [PATCH] Added space between signature and help --- src/exts/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/exts/utils.py b/src/exts/utils.py index 4233ee8..8e96f79 100644 --- a/src/exts/utils.py +++ b/src/exts/utils.py @@ -749,8 +749,8 @@ class Utils: if command and not command.hidden: pag.add(f'\uFFF6{command.name}') - pag.add(f'Usage: {prefixes.split()[0]}{command.signature}\n\n') - pag.add(f'{command.help}') + pag.add(f'Usage: {prefixes.split()[0]}{command.signature}\n') + pag.add(f'\uFFF0\n{command.help}') else: pag.add('\uFFF6There is no command by that name.')