diff options
| author | Rapptz <[email protected]> | 2016-11-05 16:57:52 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-01-03 09:51:55 -0500 |
| commit | 5cb3ad14e8501961c2684498682bfb4e0fb016ff (patch) | |
| tree | 29d314d03844af9359fb47f3f7ab3c90aaf76ab1 /discord/channel.py | |
| parent | Make roles and guilds stateful. (diff) | |
| download | discord.py-5cb3ad14e8501961c2684498682bfb4e0fb016ff.tar.xz discord.py-5cb3ad14e8501961c2684498682bfb4e0fb016ff.zip | |
Make emojis and members stateful.
Diffstat (limited to 'discord/channel.py')
| -rw-r--r-- | discord/channel.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/discord/channel.py b/discord/channel.py index a3ba99dc..70b0b0b3 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -355,7 +355,8 @@ class TextChannel(abc.MessageChannel, CommonGuildChannel): Edits the channel. - You must have the Manage Channel permission to use this. + You must have the :attr:`Permissions.manage_channel` permission to + use this. Parameters ---------- @@ -446,7 +447,8 @@ class VoiceChannel(CommonGuildChannel): Edits the channel. - You must have the Manage Channel permission to use this. + You must have the :attr:`Permissions.manage_channel` permission to + use this. Parameters ---------- |