diff options
| author | Rapptz <[email protected]> | 2019-03-17 15:14:58 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-03-17 15:14:58 -0400 |
| commit | f3f2f882fdcb07a6537e6399cd41414fa7121ff4 (patch) | |
| tree | 42facbf0b5831c50fc5e6a9a1dd55b89502d228a | |
| parent | [commands] Make Bot.cogs and Bot.extensions read-only mappings. (diff) | |
| download | discord.py-f3f2f882fdcb07a6537e6399cd41414fa7121ff4.tar.xz discord.py-f3f2f882fdcb07a6537e6399cd41414fa7121ff4.zip | |
Fix typo in private property name.
| -rw-r--r-- | discord/channel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/channel.py b/discord/channel.py index 42b13326..dbbae23c 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -589,7 +589,7 @@ class CategoryChannel(discord.abc.GuildChannel, Hashable): self._fill_overwrites(data) @property - def _sorting_bucker(self): + def _sorting_bucket(self): return ChannelType.category def is_nsfw(self): |