From ce13ec71d99f21d7548e3ac57d5476fe18e59173 Mon Sep 17 00:00:00 2001 From: Andrew Chen Wang <60190294+Andrew-Chen-Wang@users.noreply.github.com> Date: Fri, 8 Oct 2021 10:19:12 -0400 Subject: [PATCH] Update docs for multiple usernames for ACL DELUSER --- redis/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis/commands.py b/redis/commands.py index eb7cea54f6..d0bcec2cb8 100644 --- a/redis/commands.py +++ b/redis/commands.py @@ -49,7 +49,7 @@ def acl_cat(self, category=None): 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):