aboutsummaryrefslogtreecommitdiffstats
path: root/bot/converters.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/converters.py')
-rw-r--r--bot/converters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/converters.py b/bot/converters.py
index 976376fce..635fef1c7 100644
--- a/bot/converters.py
+++ b/bot/converters.py
@@ -286,7 +286,7 @@ class HushDurationConverter(Converter):
duration = int(match.group(1))
if duration > 15:
- raise BadArgument("Duration must be below 15 minutes.")
+ raise BadArgument("Duration must be at most 15 minutes.")
return duration