From 7b3d3362ff0019999687afe830739a4aa519d449 Mon Sep 17 00:00:00 2001 From: Etzelia Date: Wed, 29 Aug 2018 10:49:32 -0500 Subject: [PATCH] Fully qualified path name to cogs. This is an untested PR directly on GitHub. This should allow Geoffrey to be installed as a module and still find his cogs (should be renamed sed tbh). --- geoffrey/bot.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/geoffrey/bot.py b/geoffrey/bot.py index e1329f6..f0de364 100644 --- a/geoffrey/bot.py +++ b/geoffrey/bot.py @@ -32,11 +32,11 @@ If have a suggestion or if something is borked, you can PM my ding dong of a cre bad_error_message = 'OOPSIE WOOPSIE!! Uwu We made a fucky wucky!! A wittle fucko boingo! The admins at our ' \ 'headquarters are working VEWY HAWD to fix this! (Error in command {})' -extensions = ['cogs.Add_Commands', - 'cogs.Delete_Commands', - 'cogs.Edit_Commands', - 'cogs.Search_Commands', - 'cogs.Admin_Commands'] +extensions = ['geoffrey.cogs.Add_Commands', + 'geoffrey.cogs.Delete_Commands', + 'geoffrey.cogs.Edit_Commands', + 'geoffrey.cogs.Search_Commands', + 'geoffrey.cogs.Admin_Commands'] bot = commands.Bot(command_prefix=bot_config.prefix, description=description, case_insensitive=True)