From 93e3c360a718fbda6b561721bfae0716ac9cd4cd Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 8 Jan 2016 15:31:06 -0500 Subject: [PATCH] Fix conflicts with __slots__ and the new properties under Server. --- discord/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/server.py b/discord/server.py index 2d2afe6bc..11d35d67c 100644 --- a/discord/server.py +++ b/discord/server.py @@ -84,7 +84,7 @@ class Server(Hashable): Check the :func:`on_server_unavailable` and :func:`on_server_available` events. """ - __slots__ = [ 'afk_timeout', 'afk_channel', 'members', 'channels', 'icon', + __slots__ = [ 'afk_timeout', 'afk_channel', '_members', '_channels', 'icon', 'name', 'id', 'owner', 'unavailable', 'name', 'me', 'region', '_default_role', '_default_channel', 'roles' ]