diff options
author | Andy McCurdy <andy@andymccurdy.com> | 2017-01-29 14:47:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-29 14:47:37 -0500 |
commit | ba832c1e0a51fccfe91f86356f7b58c955c33c4e (patch) | |
tree | 0dcd5bfe201bf60d41654f087297abd4a2d80dd5 | |
parent | 3f4ac6e685b122f49b516db3f59c1edc988e6b49 (diff) | |
parent | 9cf23c2ba7df7e2f5e95ad27f1e7c7d11be12760 (diff) | |
download | redis-py-ba832c1e0a51fccfe91f86356f7b58c955c33c4e.tar.gz |
Merge pull request #801 from PowerDNS/nit
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. |