diff options
| author | Rapptz <[email protected]> | 2016-07-13 00:10:16 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2016-07-13 00:10:16 -0400 |
| commit | ddd3fd0a3dcce2d48b2df26377e136f2310809b3 (patch) | |
| tree | 1db729a099756f89c1e36e448bb05449593d0736 /discord/gateway.py | |
| parent | Add stderr arg to create_ffmpeg_player (diff) | |
| download | discord.py-ddd3fd0a3dcce2d48b2df26377e136f2310809b3.tar.xz discord.py-ddd3fd0a3dcce2d48b2df26377e136f2310809b3.zip | |
Begin working on gateway v6 changes.
The first batch of changes are related to channel types and group
direct messages. Support these first so READY begins parsing.
Diffstat (limited to 'discord/gateway.py')
| -rw-r--r-- | discord/gateway.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/gateway.py b/discord/gateway.py index 7ba78b07..56e4ba6f 100644 --- a/discord/gateway.py +++ b/discord/gateway.py @@ -98,7 +98,7 @@ class VoiceKeepAliveHandler(KeepAliveHandler): } class DiscordWebSocket(websockets.client.WebSocketClientProtocol): - """Implements a WebSocket for Discord's gateway v4. + """Implements a WebSocket for Discord's gateway v6. This is created through :func:`create_main_websocket`. Library users should never create this manually. |