diff options
| author | 2020-07-31 22:40:18 -0700 | |
|---|---|---|
| committer | 2020-07-31 23:03:27 -0700 | |
| commit | 6618359ac3484544fe4e88d66dd8b5669254c154 (patch) | |
| tree | b2c63477200aba8af3a02d1983925e7c631bc870 | |
| parent | Reminders: 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.py | 2 |
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 |