diff options
| author | Rapptz <[email protected]> | 2017-07-05 00:48:27 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-07-05 00:48:27 -0400 |
| commit | b88cc8156cc044a2d834e61df241c8de1b996b48 (patch) | |
| tree | b23aa9ed7c4bddf6c10144f21236b033a4518d3f | |
| parent | Fix TextChannel.purge not working. (diff) | |
| download | discord.py-b88cc8156cc044a2d834e61df241c8de1b996b48.tar.xz discord.py-b88cc8156cc044a2d834e61df241c8de1b996b48.zip | |
Accidentally left a print statement.
| -rw-r--r-- | discord/state.py | 1 |
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) |