aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2017-07-05 00:48:27 -0400
committerRapptz <[email protected]>2017-07-05 00:48:27 -0400
commitb88cc8156cc044a2d834e61df241c8de1b996b48 (patch)
treeb23aa9ed7c4bddf6c10144f21236b033a4518d3f
parentFix TextChannel.purge not working. (diff)
downloaddiscord.py-b88cc8156cc044a2d834e61df241c8de1b996b48.tar.xz
discord.py-b88cc8156cc044a2d834e61df241c8de1b996b48.zip
Accidentally left a print statement.
-rw-r--r--discord/state.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/discord/state.py b/discord/state.py
index f2ed8244..a8d4ffe7 100644
--- a/discord/state.py
+++ b/discord/state.py
@@ -208,7 +208,6 @@ class ConnectionState:
if len(self._private_channels) > 128:
_, to_remove = self._private_channels.popitem(last=False)
- print(to_remove)
if isinstance(to_remove, DMChannel):
self._private_channels_by_user.pop(to_remove.recipient.id, None)