summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2017-01-29 14:47:37 -0500
committerGitHub <noreply@github.com>2017-01-29 14:47:37 -0500
commitba832c1e0a51fccfe91f86356f7b58c955c33c4e (patch)
tree0dcd5bfe201bf60d41654f087297abd4a2d80dd5
parent3f4ac6e685b122f49b516db3f59c1edc988e6b49 (diff)
parent9cf23c2ba7df7e2f5e95ad27f1e7c7d11be12760 (diff)
downloadredis-py-ba832c1e0a51fccfe91f86356f7b58c955c33c4e.tar.gz
Merge pull request #801 from PowerDNS/nit
insert missing word
-rwxr-xr-xredis/connection.py4
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.