diff options
Diffstat (limited to 'redis/client.py')
-rwxr-xr-x | redis/client.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/redis/client.py b/redis/client.py index ed4e9dd..84a471c 100755 --- a/redis/client.py +++ b/redis/client.py @@ -2011,7 +2011,10 @@ class StrictRedis(object): return self.execute_command('HVALS', name) def hstrlen(self, name, key): - "Return the number of bytes stored in the value of ``key`` within hash ``name``" + """ + Return the number of bytes stored in the value of ``key`` + within hash ``name`` + """ return self.execute_command('HSTRLEN', name, key) def publish(self, channel, message): |