diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/help_channels.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/cogs/help_channels.py b/bot/cogs/help_channels.py index f53f7a7ba..a6fa05d90 100644 --- a/bot/cogs/help_channels.py +++ b/bot/cogs/help_channels.py @@ -214,7 +214,8 @@ class HelpChannels(Scheduler, commands.Cog):                      log.trace("Deleting dormant invokation message.")                      await ctx.message.delete() -                await self.reset_claimant_send_permission(ctx.channel) +                with suppress(discord.errors.HTTPException, discord.errors.NotFound): +                    await self.reset_claimant_send_permission(ctx.channel)                  self.cancel_task(ctx.channel.id)                  await self.move_to_dormant(ctx.channel)  |