diff options
author | 2021-06-20 13:47:16 +0300 | |
---|---|---|
committer | 2021-06-20 13:47:16 +0300 | |
commit | b2b9fa9f98b01b254bf4092a44f3d4363a7f3a79 (patch) | |
tree | 37a258541b1292b3ea9794118b394e4b76ae3967 | |
parent | Merge pull request #1650 from wookie184/master (diff) | |
parent | Use the correct constant name for deleteing after a delay (diff) |
Merge pull request #1653 from python-discord/correct-constant-name
Use the correct constant name for deleteing after a delay
-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 a9b847582..35658d117 100644 --- a/bot/exts/help_channels/_cog.py +++ b/bot/exts/help_channels/_cog.py @@ -594,7 +594,7 @@ class HelpChannels(commands.Cog): await bot_commands_channel.send( f"{message.author.mention} {constants.Emojis.cross_mark} " "To receive updates on help channels you're active in, enable your DMs.", - delete_after=RedirectOutput.delete_after + delete_after=RedirectOutput.delete_delay ) return |