diff options
author | 2021-02-04 12:30:40 +0300 | |
---|---|---|
committer | 2021-02-04 12:30:40 +0300 | |
commit | b91f4828cf1cd83937127bf2bc43a3cd3b820294 (patch) | |
tree | 2e46d3efe2a970212ec64abe33b6647dd650664c | |
parent | Updates Voice Kick Restriction Tests (diff) | |
parent | Modifies Channel Creation Reason (diff) |
Merge remote-tracking branch 'origin/voicechannel-mute' into voicechannel-mute
-rw-r--r-- | bot/exts/moderation/silence.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/silence.py b/bot/exts/moderation/silence.py index ea531c37a..dd379b412 100644 --- a/bot/exts/moderation/silence.py +++ b/bot/exts/moderation/silence.py @@ -325,7 +325,7 @@ class Silence(commands.Cog): finally: # Delete VC channel if it was created. if delete_channel: - await afk_channel.delete(reason="Deleting temp mute channel.") + await afk_channel.delete(reason="Deleting temporary mute channel.") async def _schedule_unsilence(self, ctx: Context, channel: TextOrVoiceChannel, duration: Optional[int]) -> None: """Schedule `ctx.channel` to be unsilenced if `duration` is not None.""" |