From b9689b502d2dd31a132634a02953e586da821a4d Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Fri, 8 Jun 2018 14:55:34 -0800 Subject: [PATCH] Fixed bug in help --- src/__main__.py | 2 +- src/exts/utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/__main__.py b/src/__main__.py index 29b14f4..d04ecb4 100644 --- a/src/__main__.py +++ b/src/__main__.py @@ -62,7 +62,7 @@ class Geeksbot(commands.Bot): self.voice_chans = {} self.spam_list = {} self.owner_id = 351794468870946827 - self.__version__ = '0.6.2a' + self.__version__ = '0.6.3a' self.gcs_service = build('customsearch', 'v1', developerKey=self.bot_secrets['google_search_key']) self.tpe = futures.ThreadPoolExecutor() self.geo_api = '2d4e419c2be04c8abe91cb5dd1548c72' diff --git a/src/exts/utils.py b/src/exts/utils.py index 8e96f79..4e49dfb 100644 --- a/src/exts/utils.py +++ b/src/exts/utils.py @@ -752,7 +752,7 @@ class Utils: 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.') + pag.add('\uFFF6There is no command by that name.\n>') book = utils.Book(pag, (None, ctx.channel, self.bot, ctx.message)) await book.create_book()