aboutsummaryrefslogtreecommitdiff
path: root/discord
diff options
context:
space:
mode:
authorRapptz <[email protected]>2018-09-24 04:21:58 -0400
committerRapptz <[email protected]>2018-09-24 04:22:09 -0400
commit418048b98abef627f57f9e28e268bf3a8668648a (patch)
tree5a45782e5691835d7213b8373680c1a6697cd760 /discord
parentForgot to add these images. (diff)
downloaddiscord.py-418048b98abef627f57f9e28e268bf3a8668648a.tar.xz
discord.py-418048b98abef627f57f9e28e268bf3a8668648a.zip
[commands] Fix up Greedy documentation a bit.
Diffstat (limited to 'discord')
-rw-r--r--discord/ext/commands/errors.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/ext/commands/errors.py b/discord/ext/commands/errors.py
index fea81b4a..c20c09f5 100644
--- a/discord/ext/commands/errors.py
+++ b/discord/ext/commands/errors.py
@@ -54,6 +54,8 @@ class CommandError(DiscordException):
class ConversionError(CommandError):
"""Exception raised when a Converter class raises non-CommandError.
+ This inherits from :exc:`.CommandError`.
+
Attributes
----------
converter: :class:`discord.ext.commands.Converter`
@@ -61,8 +63,6 @@ class ConversionError(CommandError):
original
The original exception that was raised. You can also get this via
the ``__cause__`` attribute.
-
- This inherits from :exc:`.CommandError`.
"""
def __init__(self, converter, original):
self.converter = converter