diff options
| -rw-r--r-- | discord/client.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/discord/client.py b/discord/client.py index add57333..8f319416 100644 --- a/discord/client.py +++ b/discord/client.py @@ -300,7 +300,6 @@ class Client: @asyncio.coroutine def received_message(self, msg): if isinstance(msg, bytes): - print('compressed') msg = zlib.decompress(msg, 15, 10490000) # This is 10 MiB msg = msg.decode('utf-8') |