aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2016-01-01 21:09:56 -0500
committerRapptz <[email protected]>2016-01-01 21:09:56 -0500
commit46be2183944bf49d106c8a9b635f0b1dac3a5b47 (patch)
tree3e7209adc37deda231a746815e6c2ad715bf453b
parentImplement compressed READY (diff)
downloaddiscord.py-46be2183944bf49d106c8a9b635f0b1dac3a5b47.tar.xz
discord.py-46be2183944bf49d106c8a9b635f0b1dac3a5b47.zip
Remove print statement from bytes check.
-rw-r--r--discord/client.py1
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')