diff options
author | Arctice <naurthal0@gmail.com> | 2017-05-26 04:28:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-26 04:28:00 +0200 |
commit | 64a4139469ef5a4db6c1a73bc5c0f0cfb7f6a917 (patch) | |
tree | d456139079cba6363c971287cbcf8b2a6eedb66c | |
parent | d6c300b39ab4c81cd97b81fcd8d25a9cde9476e7 (diff) | |
download | redis-py-64a4139469ef5a4db6c1a73bc5c0f0cfb7f6a917.tar.gz |
typo fix
-rwxr-xr-x | redis/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/client.py b/redis/client.py index 98764ca..da2f6aa 100755 --- a/redis/client.py +++ b/redis/client.py @@ -1264,7 +1264,7 @@ class StrictRedis(object): RPOP a value off of the first non-empty list named in the ``keys`` list. - If none of the lists in ``keys`` has a value to LPOP, then block + If none of the lists in ``keys`` has a value to RPOP, then block for ``timeout`` seconds, or until a value gets pushed on to one of the lists. |