Browse Source

Remove get_channel from __getattr__ in Client.

pull/10/head
Rapptz 10 years ago
parent
commit
66c39b6151
  1. 3
      discord/client.py

3
discord/client.py

@ -404,8 +404,7 @@ class Client(object):
# Compatibility shim
def __getattr__(self, name):
if name in ('user', 'email', 'servers', 'private_channels', 'messages',
'get_channel'):
if name in ('user', 'email', 'servers', 'private_channels', 'messages'):
return getattr(self.connection, name)
else:
msg = "'{}' object has no attribute '{}'"

Loading…
Cancel
Save