Skip to content
This repository has been archived by the owner on Sep 28, 2023. It is now read-only.

Commit

Permalink
fix a typo introduced in last commit. thanks Ask Solem for finding.
Browse files Browse the repository at this point in the history
  • Loading branch information
andymccurdy committed Jun 7, 2011
1 parent 146db39 commit 1d0d7bd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions 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.
Expand Down
2 changes: 1 addition & 1 deletion redis/__init__.py
Expand Up @@ -15,7 +15,7 @@
)


__version__ = '2.4.3'
__version__ = '2.4.4'

__all__ = [
'Redis', 'ConnectionPool', 'Connection', 'UnixDomainSocketConnection',
Expand Down
2 changes: 1 addition & 1 deletion redis/connection.py
Expand Up @@ -124,7 +124,7 @@ def connect(self):
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()
Expand Down

0 comments on commit 1d0d7bd

Please sign in to comment.