diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 567efde56..cc8dd8bfd 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -259,7 +259,7 @@ class Command: except AttributeError: name = converter.__class__.__name__ - raise BadArgument('Converting to "{}" failed.'.format(name)) from e + raise BadArgument('Converting to "{}" failed for parameter "{}".'.format(name, param.name)) from e @property def clean_params(self):