aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2020-07-31 22:40:18 -0700
committerGravatar MarkKoz <[email protected]>2020-07-31 23:03:27 -0700
commit6618359ac3484544fe4e88d66dd8b5669254c154 (patch)
treeb2c63477200aba8af3a02d1983925e7c631bc870
parentReminders: show error to users if reminder is in use (diff)
Reminders: use singular form for mutually exclusive namespace
The exception it raises reads better if the singular form of the word is used.
-rw-r--r--bot/cogs/reminders.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/reminders.py b/bot/cogs/reminders.py
index 292435f24..be97d34b6 100644
--- a/bot/cogs/reminders.py
+++ b/bot/cogs/reminders.py
@@ -23,7 +23,7 @@ from bot.utils.time import humanize_delta
log = logging.getLogger(__name__)
-NAMESPACE = "reminders" # Used for the mutually_exclusive decorator; constant to prevent typos
+NAMESPACE = "reminder" # Used for the mutually_exclusive decorator; constant to prevent typos
WHITELISTED_CHANNELS = Guild.reminder_whitelist
MAXIMUM_REMINDERS = 5