summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2015-11-02 11:22:01 -0800
committerAndy McCurdy <andy@andymccurdy.com>2015-11-02 11:22:01 -0800
commit10895e2a5923895bd10c95cabe07c4f0bfaf811b (patch)
treebf73a598aab9c0633b1bb1506b202879a701a2d4
parent69e38ceda52cc03ad238e522cd9df588f413cbef (diff)
downloadredis-py-10895e2a5923895bd10c95cabe07c4f0bfaf811b.tar.gz
typo
-rwxr-xr-xredis/connection.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/redis/connection.py b/redis/connection.py
index 9d39dbb..6480ab9 100755
--- a/redis/connection.py
+++ b/redis/connection.py
@@ -189,11 +189,11 @@ class SocketBuffer(object):
self.purge()
self._buffer.close()
except:
- # issue #633 suggests the purge/close someone raised a
+ # issue #633 suggests the purge/close somehow raised a
# BadFileDescriptor error. Perhaps the client ran out of
# memory or something else? It's probably OK to ignore
# any error being raised from purge/close since we're
- # removing the the reference to the instance below.
+ # removing the reference to the instance below.
pass
self._buffer = None
self._sock = None