diff options
| author | Rapptz <[email protected]> | 2015-08-28 16:55:40 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2015-08-28 16:55:40 -0400 |
| commit | b7fc383013ce135216a958aa1f1a0cecceedbfae (patch) | |
| tree | d5db3dadd7af51e6ef4c54bc8b656336feb00f2e /discord/client.py | |
| parent | Quick documentation fixes (diff) | |
| download | discord.py-b7fc383013ce135216a958aa1f1a0cecceedbfae.tar.xz discord.py-b7fc383013ce135216a958aa1f1a0cecceedbfae.zip | |
Python3 import fixes.
Diffstat (limited to 'discord/client.py')
| -rw-r--r-- | discord/client.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/discord/client.py b/discord/client.py index d538b973..334cb56c 100644 --- a/discord/client.py +++ b/discord/client.py @@ -26,16 +26,16 @@ DEALINGS IN THE SOFTWARE. import requests import json, re, time, copy -import endpoints from collections import deque from threading import Timer from ws4py.client.threadedclient import WebSocketClient from sys import platform as sys_platform -from errors import InvalidEventName, InvalidDestination, GatewayNotFound -from user import User -from channel import Channel, PrivateChannel -from server import Server, Member, Permissions, Role -from message import Message +from . import endpoints +from .errors import InvalidEventName, InvalidDestination, GatewayNotFound +from .user import User +from .channel import Channel, PrivateChannel +from .server import Server, Member, Permissions, Role +from .message import Message def _null_event(*args, **kwargs): pass |