diff options
| author | Rapptz <[email protected]> | 2017-04-22 04:44:21 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-04-22 04:44:21 -0400 |
| commit | 0ce781b37c2771ef89bdf607d40126ac368b4f5c (patch) | |
| tree | 77b42bc6ee811cd9cfab3ee0619db3be28a9edf3 | |
| parent | Timeout when doing initial connection. (diff) | |
| download | discord.py-0ce781b37c2771ef89bdf607d40126ac368b4f5c.tar.xz discord.py-0ce781b37c2771ef89bdf607d40126ac368b4f5c.zip | |
Fix NameError in GuildChannel.changed_roles
| -rw-r--r-- | discord/abc.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/abc.py b/discord/abc.py index 863d6d76..a4cdae5a 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -25,6 +25,7 @@ DEALINGS IN THE SOFTWARE. """ import abc +import copy import asyncio from collections import namedtuple |