diff options
| author | BeatButton <[email protected]> | 2021-01-12 00:34:23 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-01-12 02:34:23 -0500 |
| commit | bc0e214b9833db83ef0d569484316fc198474299 (patch) | |
| tree | a5dc34fb83d902ae582aca3394b2841cb2516740 | |
| parent | Fix tag references in builds (diff) | |
| download | discord.py-bc0e214b9833db83ef0d569484316fc198474299.tar.xz discord.py-bc0e214b9833db83ef0d569484316fc198474299.zip | |
[commands] Correct ChannelNotFound docstring
| -rw-r--r-- | discord/ext/commands/errors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/errors.py b/discord/ext/commands/errors.py index beec98f5..541a9833 100644 --- a/discord/ext/commands/errors.py +++ b/discord/ext/commands/errors.py @@ -289,7 +289,7 @@ class ChannelNotFound(BadArgument): Attributes ----------- - channel: :class:`str` + argument: :class:`str` The channel supplied by the caller that was not found """ def __init__(self, argument): |