diff options
Diffstat (limited to 'redis/exceptions.py')
-rw-r--r-- | redis/exceptions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/redis/exceptions.py b/redis/exceptions.py index 7f3034f..35bfbe5 100644 --- a/redis/exceptions.py +++ b/redis/exceptions.py @@ -60,6 +60,6 @@ class LockError(RedisError, ValueError): pass -class LockErrorNotOwned(LockError): - "Error related to lock that may have been owned being lost." +class LockNotOwnedError(LockError): + "Error trying to extend or release a lock that is (no longer) owned" pass |