[commands] Make ConversionError have the original error as an attribute

This commit is contained in:
Rapptz
2018-07-20 05:54:51 -04:00
parent 92dde9aef9
commit da5776a358
2 changed files with 6 additions and 2 deletions

View File

@ -239,7 +239,7 @@ class Command:
except CommandError as e:
raise e
except Exception as e:
raise ConversionError(converter) from e
raise ConversionError(converter, e) from e
try:
return converter(argument)