aboutsummaryrefslogtreecommitdiffstats
path: root/botstrap.py
diff options
context:
space:
mode:
authorGravatar wookie184 <[email protected]>2023-04-12 15:21:53 +0100
committerGravatar GitHub <[email protected]>2023-04-12 15:21:53 +0100
commitcd420dade00b253bc7d458a2480748a55668591a (patch)
treedb171434ffe1e3872e3f6a83c56f9ea6a8ac8806 /botstrap.py
parentFix deleted message logging in mod alert (diff)
parentMerge pull request #2523 from python-discord/flake8-to-ruff (diff)
Merge branch 'main' into fix_alert_message_logging
Diffstat (limited to 'botstrap.py')
-rw-r--r--botstrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/botstrap.py b/botstrap.py
index ccf6993f5..c57a254a3 100644
--- a/botstrap.py
+++ b/botstrap.py
@@ -204,7 +204,7 @@ with DiscordClient(guild_id=GUILD_ID) as discord_client:
create_help_channel = False
if create_help_channel:
- python_help_channel_name = PYTHON_HELP_CHANNEL_NAME.replace('_', '-')
+ python_help_channel_name = PYTHON_HELP_CHANNEL_NAME.replace("_", "-")
python_help_category_id = all_categories[PYTHON_HELP_CATEGORY_NAME]
python_help_channel_id = discord_client.create_forum_channel(python_help_channel_name, python_help_category_id)
all_channels[PYTHON_HELP_CHANNEL_NAME] = python_help_channel_id