diff options
author | Parker <contact@pkrm.dev> | 2024-08-24 19:59:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-24 19:59:08 +0000 |
commit | bde38c3a71f4e208a2fd1624ea85d8d94cfad3a7 (patch) | |
tree | 83a0f2210171995796b87443be71fb7cc61a5774 /code/bot.py | |
parent | c8facd013d9b285c2d24f5b0c127e326bdfa4282 (diff) | |
parent | 7724cfdca43a85dfc53d50f2f164334625cd9a30 (diff) |
Merge pull request #5 from PacketParker/dev
Optional YouTube support
Diffstat (limited to 'code/bot.py')
-rw-r--r-- | code/bot.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/code/bot.py b/code/bot.py index 3569e68..d0154e3 100644 --- a/code/bot.py +++ b/code/bot.py @@ -28,6 +28,7 @@ class MyBot(commands.Bot): bot.openai = openai.OpenAI(api_key=config.OPENAI_API_KEY) config.LOG.info("Loading cogs...") + config.LOG.info("YouTube support is enabled" if config.YOUTUBE_SUPPORT else "YouTube support is disabled") for ext in os.listdir("./code/cogs"): if ext.endswith(".py"): # Load the OPTIONAL feedback cog |