aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2015-08-28 16:55:40 -0400
committerRapptz <[email protected]>2015-08-28 16:55:40 -0400
commitb7fc383013ce135216a958aa1f1a0cecceedbfae (patch)
treed5db3dadd7af51e6ef4c54bc8b656336feb00f2e /discord/client.py
parentQuick documentation fixes (diff)
downloaddiscord.py-b7fc383013ce135216a958aa1f1a0cecceedbfae.tar.xz
discord.py-b7fc383013ce135216a958aa1f1a0cecceedbfae.zip
Python3 import fixes.
Diffstat (limited to 'discord/client.py')
-rw-r--r--discord/client.py12
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