diff options
-rw-r--r-- | bot/exts/help_channels/_cog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/help_channels/_cog.py b/bot/exts/help_channels/_cog.py index 1f00f374b..9db66bb39 100644 --- a/bot/exts/help_channels/_cog.py +++ b/bot/exts/help_channels/_cog.py @@ -125,7 +125,7 @@ class HelpForum(commands.Cog): if after.parent_id != self.help_forum_channel.id: return if not before.archived and after.archived: - await _channel.help_post_archived(after) + await _channel.help_post_archived(after, self.scheduler) if after.id in self.scheduler: self.scheduler.cancel(after.id) |