diff options
author | AngusP <a7cp3ar50n@gmail.com> | 2017-01-24 02:11:15 +0000 |
---|---|---|
committer | AngusP <a7cp3ar50n@gmail.com> | 2017-01-24 02:11:15 +0000 |
commit | 54739783f344588cdbcd03dce6a3b37425c45218 (patch) | |
tree | decb3641018c87dfd884a00db5aff4e24cc9064e /redis/client.py | |
parent | 6ba1d33cf9acf3fc6b7bd8e2e49bbd0490330e7e (diff) | |
download | redis-py-54739783f344588cdbcd03dce6a3b37425c45218.tar.gz |
Add PUBSUB docs to README
Diffstat (limited to 'redis/client.py')
-rwxr-xr-x | redis/client.py | 3 |
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) |