diff options
author | Roey Prat <roey.prat@redislabs.com> | 2020-07-13 20:20:59 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-13 20:20:59 +0300 |
commit | 142a44a075df4f371320d6da2b8341db62fa5d15 (patch) | |
tree | b5559c22f538853e870c9fb14ddd29f2687b7ad5 /redis/exceptions.py | |
parent | cec8e77b510eae7720cdf7258deb0a0085a9af12 (diff) | |
download | redis-py-142a44a075df4f371320d6da2b8341db62fa5d15.tar.gz |
fix typo (#1367)
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 ca2ad87..91eb3c7 100644 --- a/redis/exceptions.py +++ b/redis/exceptions.py @@ -63,7 +63,7 @@ class ModuleError(ResponseError): class LockError(RedisError, ValueError): "Errors acquiring or releasing a lock" - # NOTE: For backwards compatability, this class derives from ValueError. + # NOTE: For backwards compatibility, this class derives from ValueError. # This was originally chosen to behave like threading.Lock. pass |