diff options
author | Yossi Gottlieb <yossigo@gmail.com> | 2013-06-04 22:37:06 +0300 |
---|---|---|
committer | Yossi Gottlieb <yossigo@gmail.com> | 2013-06-04 22:37:06 +0300 |
commit | 96b4e3d9de929fb43877e0c148455c6216e70056 (patch) | |
tree | 9c1456af012e75f2e4750ec5896d6ad9e67d957c /redis/exceptions.py | |
parent | b20329cb18534d1d2fcc817467b017aa4556010e (diff) | |
download | redis-py-96b4e3d9de929fb43877e0c148455c6216e70056.tar.gz |
BusyLoadingError should inherit ConnectionError.
Diffstat (limited to 'redis/exceptions.py')
-rw-r--r-- | redis/exceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/exceptions.py b/redis/exceptions.py index 1e47972..d67afa7 100644 --- a/redis/exceptions.py +++ b/redis/exceptions.py @@ -17,7 +17,7 @@ class ConnectionError(ServerError): pass -class BusyLoadingError(ServerError): +class BusyLoadingError(ConnectionError): pass |