diff options
author | James Arthur <thruflo@gmail.com> | 2013-04-19 10:56:26 +0100 |
---|---|---|
committer | James Arthur <thruflo@gmail.com> | 2013-04-19 10:56:26 +0100 |
commit | 1b2c098b9c5cf2f79bb3ac232b82db49821f091a (patch) | |
tree | 0843b781f38c4aa47c6e06ecadef9899c523157d /redis/connection.py | |
parent | 2608697ada3f584f2fdb5038625167520cae0d60 (diff) | |
download | redis-py-1b2c098b9c5cf2f79bb3ac232b82db49821f091a.tar.gz |
connection: remove stray print statement.
Diffstat (limited to 'redis/connection.py')
-rw-r--r-- | redis/connection.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/redis/connection.py b/redis/connection.py index aed229f..5a86c0e 100644 --- a/redis/connection.py +++ b/redis/connection.py @@ -515,7 +515,6 @@ class BlockingConnectionPool(object): connection = self.connection_class(**self.connection_kwargs) self._connections.append(connection) - print len(self._connections) return connection def get_connection(self, command_name, *keys, **options): |