summaryrefslogtreecommitdiff
path: root/redis/__init__.py
diff options
context:
space:
mode:
authorZac Bristow <zbristow@codeaurora.org>2019-10-10 15:17:12 -0700
committerAndy McCurdy <andy@andymccurdy.com>2019-10-10 16:40:04 -0700
commite1bc3854dbce670652563d28d84bba0f333e2575 (patch)
tree10725b99e89670a04cebbd952e70060706d31518 /redis/__init__.py
parenta03c12e5869469aeaf4016d75a883a1fceb992fd (diff)
downloadredis-py-e1bc3854dbce670652563d28d84bba0f333e2575.tar.gz
Version 3.3.103.3.10
Fix SSL regression introduced in 3.3.9 The wrapper introduced to handle SSL timeout errors in Python 2.7 incorrectly assumed that instances of SSLError would always have a string as their first element. The safer approach is to check the message attribute on the error.
Diffstat (limited to 'redis/__init__.py')
-rw-r--r--redis/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/__init__.py b/redis/__init__.py
index 2835a42..cfe7078 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -29,7 +29,7 @@ def int_or_str(value):
return value
-__version__ = '3.3.9'
+__version__ = '3.3.10'
VERSION = tuple(map(int_or_str, __version__.split('.')))
__all__ = [