From 3791d205def8fdf269686b0aeea630e447b9b1d7 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Fri, 8 Jun 2018 14:49:16 -0800 Subject: [PATCH] Added signature to detailed help --- src/exts/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/exts/utils.py b/src/exts/utils.py index 81265d8..c9d6752 100644 --- a/src/exts/utils.py +++ b/src/exts/utils.py @@ -751,6 +751,8 @@ class Utils: pag.add(f'\uFFF6{command.name}') pag.add(f'Usage: {prefixes.split()[0]}{command.signature}\n') pag.add(f'{command.help}') + else: + pag.add('\uFFF6There is no command by that name.') book = utils.Book(pag, (None, ctx.channel, self.bot, ctx.message)) await book.create_book()