aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris <[email protected]>2021-03-30 21:27:44 +0100
committerGravatar Chris <[email protected]>2021-03-30 21:27:44 +0100
commit57fb66d5b01dabee9d57efdeee419263b7ecd983 (patch)
tree6492ebd7d836d89311297ceaeed1c3234428e289
parentChange to an Enum for possible closing reasons (diff)
Fix copy & paste error in closing reason enum
-rw-r--r--bot/exts/help_channels/_channel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/help_channels/_channel.py b/bot/exts/help_channels/_channel.py
index b8db337fc..2837bc7c5 100644
--- a/bot/exts/help_channels/_channel.py
+++ b/bot/exts/help_channels/_channel.py
@@ -26,7 +26,7 @@ class ClosingReason(Enum):
CLAIMANT_TIMEOUT = "auto.claimant_timeout"
OTHER_TIMEOUT = "auto.other_timeout"
DELETED = "auto.deleted"
- CLEANUP = "auto.deleted"
+ CLEANUP = "auto.cleanup"
def get_category_channels(category: discord.CategoryChannel) -> t.Iterable[discord.TextChannel]: