[commands] BadBooleanArgument -> BadBoolArgument

This commit is contained in:
Rapptz
2020-09-04 08:47:07 -04:00
parent 6ebd2e13a1
commit 0a7e2f7c2f
3 changed files with 5 additions and 5 deletions

View File

@@ -107,7 +107,7 @@ def _convert_to_bool(argument):
elif lowered in ('no', 'n', 'false', 'f', '0', 'disable', 'off'):
return False
else:
raise BadBooleanArgument(lowered)
raise BadBoolArgument(lowered)
class _CaseInsensitiveDict(dict):
def __contains__(self, k):