diff options
author | Peter van Dijk <peter.van.dijk@powerdns.com> | 2016-11-14 23:50:10 +0100 |
---|---|---|
committer | Peter van Dijk <peter.van.dijk@powerdns.com> | 2016-11-15 00:44:40 +0100 |
commit | 9cf23c2ba7df7e2f5e95ad27f1e7c7d11be12760 (patch) | |
tree | 6e7bf559a2ff760764f4c3009a41c2e95a734fb4 | |
parent | d49aaacb7dd454781fd9cb2cd2cb92e9c07d7d31 (diff) | |
download | redis-py-9cf23c2ba7df7e2f5e95ad27f1e7c7d11be12760.tar.gz |
insert missing word
-rwxr-xr-x | redis/connection.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/redis/connection.py b/redis/connection.py index ed051a3..728a627 100755 --- a/redis/connection.py +++ b/redis/connection.py @@ -906,8 +906,8 @@ class ConnectionPool(object): Create a connection pool. If max_connections is set, then this object raises redis.ConnectionError when the pool's limit is reached. - By default, TCP connections are created connection_class is specified. - Use redis.UnixDomainSocketConnection for unix sockets. + By default, TCP connections are created unless connection_class is + specified. Use redis.UnixDomainSocketConnection for unix sockets. Any additional keyword arguments are passed to the constructor of connection_class. |