summaryrefslogtreecommitdiff
path: root/redis/client.py
diff options
context:
space:
mode:
authorAngusP <a7cp3ar50n@gmail.com>2017-01-24 02:11:15 +0000
committerAngusP <a7cp3ar50n@gmail.com>2017-01-24 02:11:15 +0000
commit54739783f344588cdbcd03dce6a3b37425c45218 (patch)
treedecb3641018c87dfd884a00db5aff4e24cc9064e /redis/client.py
parent6ba1d33cf9acf3fc6b7bd8e2e49bbd0490330e7e (diff)
downloadredis-py-54739783f344588cdbcd03dce6a3b37425c45218.tar.gz
Add PUBSUB docs to README
Diffstat (limited to 'redis/client.py')
-rwxr-xr-xredis/client.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/redis/client.py b/redis/client.py
index bc52cd9..f11e2e5 100755
--- a/redis/client.py
+++ b/redis/client.py
@@ -2031,7 +2031,8 @@ class StrictRedis(object):
def pubsub_numsub(self, *args):
"""
- Return a list of (channel, number of subscribers) tuples for each channel given in ``*args``
+ Return a list of (channel, number of subscribers) tuples
+ for each channel given in ``*args``
"""
return self.execute_command('PUBSUB NUMSUB', *args)