aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/ext/commands/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py
index 567efde5..cc8dd8bf 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):