From 46be2183944bf49d106c8a9b635f0b1dac3a5b47 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 1 Jan 2016 21:09:56 -0500 Subject: [PATCH] Remove print statement from bytes check. --- discord/client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/discord/client.py b/discord/client.py index add57333f..8f319416c 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')