diff options
| author | 2021-03-24 19:28:16 +0000 | |
|---|---|---|
| committer | 2021-03-24 19:28:16 +0000 | |
| commit | 2ac3e1f9f24033c77145fa143350814e15542fd2 (patch) | |
| tree | 2cde67b35cc0ed5bf1d055bc02d130632390b643 | |
| parent | Use claiment idle time as default idle minutes. (diff) | |
Add back seperation whitespace
| -rw-r--r-- | bot/exts/help_channels/_cog.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/exts/help_channels/_cog.py b/bot/exts/help_channels/_cog.py index 78ef8e89f..06adff397 100644 --- a/bot/exts/help_channels/_cog.py +++ b/bot/exts/help_channels/_cog.py @@ -298,6 +298,7 @@ class HelpChannels(commands.Cog): dormant will first be cancelled. """ log.trace(f"Handling in-use channel #{channel} ({channel.id}).") + closing_time, closed_on = await _channel.get_closing_time(channel, self.init_task.done()) # The time at which the channel should be closed, based on messages sent. if closing_time < datetime.utcnow(): |