diff options
author | Tim Gates <tim.gates@iress.com> | 2019-12-07 22:00:52 +1100 |
---|---|---|
committer | Andy McCurdy <andy@andymccurdy.com> | 2019-12-07 14:35:19 -0800 |
commit | 6d2cbe56ac3c3cf74b6338d90cd7d7e48e62e3e7 (patch) | |
tree | 51ef817e7f0296ba4bfdb79f718bcafc0e8bbdce | |
parent | 656b551eb247c491976646092a71320407c0fa03 (diff) | |
download | redis-py-6d2cbe56ac3c3cf74b6338d90cd7d7e48e62e3e7.tar.gz |
Fix simple typo: recurrsion -> recursion
Closes #1252
-rwxr-xr-x | redis/connection.py | 2 |
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: |