diff options
| author | Rapptz <[email protected]> | 2017-04-22 04:47:43 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-04-22 04:47:43 -0400 |
| commit | c30ab8a3e55f7b686a25174ab5a3adc663019b44 (patch) | |
| tree | e25749ddac56dd4aa57fdbcdc79dec1f504e1c7a | |
| parent | Fix NameError in GuildChannel.changed_roles (diff) | |
| download | discord.py-c30ab8a3e55f7b686a25174ab5a3adc663019b44.tar.xz discord.py-c30ab8a3e55f7b686a25174ab5a3adc663019b44.zip | |
Fix NameError in Role.edit when moving roles.
| -rw-r--r-- | discord/role.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/role.py b/discord/role.py index 7992183c..a0d4050c 100644 --- a/discord/role.py +++ b/discord/role.py @@ -27,6 +27,7 @@ DEALINGS IN THE SOFTWARE. import asyncio from .permissions import Permissions +from .errors import InvalidArgument from .colour import Colour from .mixins import Hashable from .utils import snowflake_time |