summaryrefslogtreecommitdiff
path: root/redis/__init__.py
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2019-10-11 10:46:51 -0700
committerAndy McCurdy <andy@andymccurdy.com>2019-10-13 08:55:27 -0700
commit53772852558ae744c624c47d143e6e0506cd6aa3 (patch)
tree7d4f1a7b0c6d059d81dade8310aefd38806464ed /redis/__init__.py
parente1bc3854dbce670652563d28d84bba0f333e2575 (diff)
downloadredis-py-53772852558ae744c624c47d143e6e0506cd6aa3.tar.gz
Version 3.3.113.3.11
check exception.args rather than exception.message. exception.message was deprecated prior to Python 2.7 and some alternative builds have removed it completely.
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 cfe7078..5539ce0 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -29,7 +29,7 @@ def int_or_str(value):
return value
-__version__ = '3.3.10'
+__version__ = '3.3.11'
VERSION = tuple(map(int_or_str, __version__.split('.')))
__all__ = [