diff options
| author | Rapptz <[email protected]> | 2016-01-01 21:09:56 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2016-01-01 21:09:56 -0500 |
| commit | 46be2183944bf49d106c8a9b635f0b1dac3a5b47 (patch) | |
| tree | 3e7209adc37deda231a746815e6c2ad715bf453b | |
| parent | Implement compressed READY (diff) | |
| download | discord.py-46be2183944bf49d106c8a9b635f0b1dac3a5b47.tar.xz discord.py-46be2183944bf49d106c8a9b635f0b1dac3a5b47.zip | |
Remove print statement from bytes check.
| -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') |