diff options
| author | Rapptz <[email protected]> | 2015-08-26 07:43:05 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2015-08-26 07:43:05 -0400 |
| commit | 108f0a6c45599d783fdb1d991fc1b5af87ca0f47 (patch) | |
| tree | 5a23a2041bfd9e39e486e330a43ac93dec6d654e /discord/__init__.py | |
| parent | Preliminary work on permission parsing. (diff) | |
| download | discord.py-108f0a6c45599d783fdb1d991fc1b5af87ca0f47.tar.xz discord.py-108f0a6c45599d783fdb1d991fc1b5af87ca0f47.zip | |
Server members are now their own class that subclass Users.
Roles are also now properly parsed.
Diffstat (limited to 'discord/__init__.py')
| -rw-r--r-- | discord/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/__init__.py b/discord/__init__.py index 1dc440c4..acdaeae9 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -21,7 +21,7 @@ __build__ = 0x002010 from client import Client from user import User from channel import Channel, PrivateChannel -from server import Server +from server import Server, Member, Permissions, Role from message import Message from errors import * from permissions import Permissions |