aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2017-02-28 17:40:17 -0500
committerRapptz <[email protected]>2017-02-28 17:40:17 -0500
commitcf40e94af600ec0e75fdc2b15888261394672e69 (patch)
tree707c66a96fac4060b50cb2674b8eac270b0f72f6
parentRemove extra space. (diff)
downloaddiscord.py-cf40e94af600ec0e75fdc2b15888261394672e69.tar.xz
discord.py-cf40e94af600ec0e75fdc2b15888261394672e69.zip
Rename VoiceChannel.voice_members to VoiceChannel.members
-rw-r--r--discord/channel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/channel.py b/discord/channel.py
index 6ed8f9c5..fd1f61f7 100644
--- a/discord/channel.py
+++ b/discord/channel.py
@@ -339,7 +339,7 @@ class VoiceChannel(discord.abc.GuildChannel, Hashable):
self._fill_overwrites(data)
@property
- def voice_members(self):
+ def members(self):
"""Returns a list of :class:`Member` that are currently inside this voice channel."""
ret = []
for user_id, state in self.guild._voice_states.items():