diff options
| author | Rapptz <[email protected]> | 2016-10-17 18:25:23 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-01-03 09:51:54 -0500 |
| commit | d1d54a468a88323a8ef7798ff084a1371d5893ec (patch) | |
| tree | 21dd315df95acd2c8d6cf63cc51fa4cadc0c7155 /discord/abc.py | |
| parent | Stateful Message and remove Invite.xkcd since it is removed. (diff) | |
| download | discord.py-d1d54a468a88323a8ef7798ff084a1371d5893ec.tar.xz discord.py-d1d54a468a88323a8ef7798ff084a1371d5893ec.zip | |
Rename Server to Guild everywhere.
Diffstat (limited to 'discord/abc.py')
| -rw-r--r-- | discord/abc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/abc.py b/discord/abc.py index 01cef255..306f0157 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -107,7 +107,7 @@ class GuildChannel(metaclass=abc.ABCMeta): return NotImplemented mro = C.__mro__ - for attr in ('name', 'server', 'overwrites_for', 'permissions_for', 'mention'): + for attr in ('name', 'guild', 'overwrites_for', 'permissions_for', 'mention'): for base in mro: if attr in base.__dict__: break |