summaryrefslogtreecommitdiff
path: root/redis/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/client.py')
-rwxr-xr-xredis/client.py5
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):