From fde070a0520b617c5f7b7e3144d15b190e9aca60 Mon Sep 17 00:00:00 2001 From: Conatum Date: Sat, 29 Jan 2022 04:08:24 +0200 Subject: [PATCH] fix (rroles): Fix typo in setting response. --- bot/settings/setting_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/settings/setting_types.py b/bot/settings/setting_types.py index 022c0c70..4b5e1dd3 100644 --- a/bot/settings/setting_types.py +++ b/bot/settings/setting_types.py @@ -680,7 +680,7 @@ class Duration(SettingType): ) if cls._min is not None and num < cls._min: raise UserInputError( - "Duration connot be shorter than `{}`!".format( + "Duration cannot be shorter than `{}`!".format( strfdur(cls._min, short=False, show_days=cls._show_days) ) )