diff options
author | Marcelo Jorge Vieira <metal@alucinados.com> | 2014-01-29 15:48:48 -0200 |
---|---|---|
committer | Marcelo Jorge Vieira <metal@alucinados.com> | 2014-01-29 15:48:48 -0200 |
commit | a801ea03186e86eea5b45effba214d0b066759b6 (patch) | |
tree | 3939f1f5e0639b33a6edbc363f56f43c2c4f229d /redis/client.py | |
parent | f4f89e9516a2922c4ef2d7448c6ef30d8133fc84 (diff) | |
download | redis-py-a801ea03186e86eea5b45effba214d0b066759b6.tar.gz |
Fixed typo in client.py
Diffstat (limited to 'redis/client.py')
-rw-r--r-- | redis/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/client.py b/redis/client.py index 5285820..336baef 100644 --- a/redis/client.py +++ b/redis/client.py @@ -2238,7 +2238,7 @@ class Lock(object): def __init__(self, redis, name, timeout=None, sleep=0.1): """ - Create a new Lock instnace named ``name`` using the Redis client + Create a new Lock instance named ``name`` using the Redis client supplied by ``redis``. ``timeout`` indicates a maximum life for the lock. |