diff options
| author | Rapptz <[email protected]> | 2019-04-29 23:37:27 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-04-29 23:37:27 -0400 |
| commit | 40cac30da1a02ffc10d332dd8a369d5434ccf3ce (patch) | |
| tree | 8a74b8d4ae2f24fbb9556ad7598aecdf016788ad | |
| parent | [tasks] Remove support for awaitables due to gotchas. (diff) | |
| download | discord.py-40cac30da1a02ffc10d332dd8a369d5434ccf3ce.tar.xz discord.py-40cac30da1a02ffc10d332dd8a369d5434ccf3ce.zip | |
[commands] Fix MessageConverter not inheriting from Converter
Closes #2126
| -rw-r--r-- | discord/ext/commands/converter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/converter.py b/discord/ext/commands/converter.py index 78c9bbf4..12b4fd60 100644 --- a/discord/ext/commands/converter.py +++ b/discord/ext/commands/converter.py @@ -172,7 +172,7 @@ class UserConverter(IDConverter): return result -class MessageConverter: +class MessageConverter(Converter): """Converts to a :class:`discord.Message`. .. versionadded:: 1.1.0 |