summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Gates <tim.gates@iress.com>2019-12-07 22:00:52 +1100
committerAndy McCurdy <andy@andymccurdy.com>2019-12-07 14:35:19 -0800
commit6d2cbe56ac3c3cf74b6338d90cd7d7e48e62e3e7 (patch)
tree51ef817e7f0296ba4bfdb79f718bcafc0e8bbdce
parent656b551eb247c491976646092a71320407c0fa03 (diff)
downloadredis-py-6d2cbe56ac3c3cf74b6338d90cd7d7e48e62e3e7.tar.gz
Fix simple typo: recurrsion -> recursion
Closes #1252
-rwxr-xr-xredis/connection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/connection.py b/redis/connection.py
index 44a9922..81b437b 100755
--- a/redis/connection.py
+++ b/redis/connection.py
@@ -656,7 +656,7 @@ class Connection(object):
"Send an already packed command to the Redis server"
if not self._sock:
self.connect()
- # guard against health check recurrsion
+ # guard against health check recursion
if check_health:
self.check_health()
try: