summaryrefslogtreecommitdiff
path: root/redis/exceptions.py
diff options
context:
space:
mode:
authorRoey Prat <roey.prat@redislabs.com>2020-07-13 20:20:59 +0300
committerGitHub <noreply@github.com>2020-07-13 20:20:59 +0300
commit142a44a075df4f371320d6da2b8341db62fa5d15 (patch)
treeb5559c22f538853e870c9fb14ddd29f2687b7ad5 /redis/exceptions.py
parentcec8e77b510eae7720cdf7258deb0a0085a9af12 (diff)
downloadredis-py-142a44a075df4f371320d6da2b8341db62fa5d15.tar.gz
fix typo (#1367)
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 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