summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2011-06-07 05:30:22 -0700
committerAndy McCurdy <andy@andymccurdy.com>2011-06-07 05:30:22 -0700
commit1d0d7bd54a62460d78b94f39377a569827db3fe1 (patch)
treed009e4299352d02482ad9978a0e653ebc232208c
parent146db39bc8997af03d3661e00b61bd756529a4ca (diff)
downloadredis-py-1d0d7bd54a62460d78b94f39377a569827db3fe1.tar.gz
fix a typo introduced in last commit. thanks Ask Solem for finding.
-rw-r--r--CHANGES2
-rw-r--r--redis/__init__.py2
-rw-r--r--redis/connection.py2
3 files changed, 4 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index a6066f9..343a957 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+* 2.4.4
+ * Fix a typo introduced in 2.4.3
* 2.4.3
* Fixed a bug in the UnixDomainSocketConnection caused when trying to
form an error message after a socket error.
diff --git a/redis/__init__.py b/redis/__init__.py
index fee785d..ac582e6 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -15,7 +15,7 @@ from redis.exceptions import (
)
-__version__ = '2.4.3'
+__version__ = '2.4.4'
__all__ = [
'Redis', 'ConnectionPool', 'Connection', 'UnixDomainSocketConnection',
diff --git a/redis/connection.py b/redis/connection.py
index b0383f5..d005430 100644
--- a/redis/connection.py
+++ b/redis/connection.py
@@ -124,7 +124,7 @@ class Connection(object):
try:
sock = self._connect()
except socket.error, e:
- raise ConnectionError(self._error_mesage(e))
+ raise ConnectionError(self._error_message(e))
self._sock = sock
self.on_connect()