diff options
author | Parker <contact@pkrm.dev> | 2024-07-18 15:03:09 -0500 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-07-18 15:03:09 -0500 |
commit | 124ec0e67d79c2d230664a9b0cf63f4bf951e23f (patch) | |
tree | 80392350bcd801e2f69f2fdef76801dadf584c09 /code | |
parent | b27aa39ea8caf61720e90c08ce635fcb51fd3d8a (diff) |
Fix spacing for continuity
Diffstat (limited to 'code')
-rw-r--r-- | code/bot.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/code/bot.py b/code/bot.py index 16e64bd..dd0be09 100644 --- a/code/bot.py +++ b/code/bot.py @@ -23,9 +23,7 @@ class MyBot(commands.Bot): for ext in os.listdir("./code/cogs"): if ext.endswith(".py"): if ext[:-3] == "feedback" and config.FEEDBACK_CHANNEL_ID == None: - config.LOG.info( - "Skipped loading feedback cog - channel ID not provided" - ) + config.LOG.info("Skipped loading feedback cog - channel ID not provided") continue if ext[:-3] == "bug" and config.BUG_CHANNEL_ID == None: config.LOG.info("Skipped loading bug cog - channel ID not provided") |