aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2020-02-24 19:22:03 -0800
committerGravatar MarkKoz <[email protected]>2020-03-22 15:54:38 -0700
commit3926497337e3e65eaa3711f963a447ab32faa811 (patch)
treeec1e9eec784957468d12304ee915724523a0ce70
parentHelpChannels: fix acquisition of the on_message lock (diff)
HelpChannels: add missing units of time in messages
-rw-r--r--bot/cogs/help_channels.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/cogs/help_channels.py b/bot/cogs/help_channels.py
index c5c542b3e..7c9bf5e27 100644
--- a/bot/cogs/help_channels.py
+++ b/bot/cogs/help_channels.py
@@ -26,8 +26,8 @@ ASKING_GUIDE_URL = "https://pythondiscord.com/pages/asking-good-questions/"
AVAILABLE_MSG = f"""
This help channel is now **available**, which means that you can claim it by simply typing your \
question into it. Once claimed, the channel will move into the **Help: In Use** category, and will \
-be yours until it has been inactive for {constants.HelpChannels.idle_minutes}. When that happens, \
-it will be set to **dormant** and moved into the **Help: Dormant** category.
+be yours until it has been inactive for {constants.HelpChannels.idle_minutes} minutes. When that \
+happens, it will be set to **dormant** and moved into the **Help: Dormant** category.
Try to write the best question you can by providing a detailed description and telling us what \
you've tried already. For more information on asking a good question, \
@@ -381,7 +381,7 @@ class HelpChannels(Scheduler, commands.Cog):
async def _scheduled_task(self, data: ChannelTimeout) -> None:
"""Make a channel dormant after specified timeout or reschedule if it's still active."""
- log.trace(f"Waiting {data.timeout} before making #{data.channel.name} dormant.")
+ log.trace(f"Waiting {data.timeout} seconds before making #{data.channel.name} dormant.")
await asyncio.sleep(data.timeout)
# Use asyncio.shield to prevent move_idle_channel from cancelling itself.