summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xredis/connection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/connection.py b/redis/connection.py
index 6ad467a..c155333 100755
--- a/redis/connection.py
+++ b/redis/connection.py
@@ -937,7 +937,7 @@ class ConnectionPool(object):
def __repr__(self):
return "%s<%s>" % (
type(self).__name__,
- self.connection_class.description_format % self.connection_kwargs,
+ repr(self.connection_class(**self.connection_kwargs)),
)
def reset(self):