Browse Source
Tweak wording for "less than" Range error
Keeping it consistent!
pull/8121/head
Steve C
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/ext/commands/errors.py
|
|
@ -607,7 +607,7 @@ class RangeError(BadArgument): |
|
|
|
if minimum is None and maximum is not None: |
|
|
|
label = f'no more than {maximum}' |
|
|
|
elif minimum is not None and maximum is None: |
|
|
|
label = f'not less than {minimum}' |
|
|
|
label = f'no less than {minimum}' |
|
|
|
elif maximum is not None and minimum is not None: |
|
|
|
label = f'between {minimum} and {maximum}' |
|
|
|
|
|
|
|