diff options
-rw-r--r-- | redis/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/commands.py b/redis/commands.py index 9dad8a5..f20acfe 100644 --- a/redis/commands.py +++ b/redis/commands.py @@ -49,7 +49,7 @@ class Commands: return self.execute_command('ACL CAT', *pieces) def acl_deluser(self, *username): - "Delete the ACL for the specified ``username``" + "Delete the ACL for the specified ``username``s" return self.execute_command('ACL DELUSER', *username) def acl_genpass(self, bits=None): |