fix (rroles): Fix typo in setting response.

This commit is contained in:
2022-01-29 04:08:24 +02:00
parent 728a8a882e
commit fde070a052

View File

@@ -680,7 +680,7 @@ class Duration(SettingType):
) )
if cls._min is not None and num < cls._min: if cls._min is not None and num < cls._min:
raise UserInputError( raise UserInputError(
"Duration connot be shorter than `{}`!".format( "Duration cannot be shorter than `{}`!".format(
strfdur(cls._min, short=False, show_days=cls._show_days) strfdur(cls._min, short=False, show_days=cls._show_days)
) )
) )