summaryrefslogtreecommitdiff
path: root/redis/exceptions.py
diff options
context:
space:
mode:
authorYossi Gottlieb <yossigo@gmail.com>2013-06-04 22:37:06 +0300
committerYossi Gottlieb <yossigo@gmail.com>2013-06-04 22:37:06 +0300
commit96b4e3d9de929fb43877e0c148455c6216e70056 (patch)
tree9c1456af012e75f2e4750ec5896d6ad9e67d957c /redis/exceptions.py
parentb20329cb18534d1d2fcc817467b017aa4556010e (diff)
downloadredis-py-96b4e3d9de929fb43877e0c148455c6216e70056.tar.gz
BusyLoadingError should inherit ConnectionError.
Diffstat (limited to 'redis/exceptions.py')
-rw-r--r--redis/exceptions.py2
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