From e23d21ec084599552c3b4053021348784952463d Mon Sep 17 00:00:00 2001 From: Fabian H <60629976+Fabian-Evolved@users.noreply.github.com> Date: Fri, 22 Jan 2021 18:25:46 +0100 Subject: [PATCH] Fixed grammatical mistake in allowlist_add. (#4748) Changed: await ctx.send(_("Users has been added to the allowlist.")) to: await ctx.send(_("Users have been added to the allowlist.")) --- redbot/core/core_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index ac792d6fe..516e5c28f 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -2792,7 +2792,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic): uids = {getattr(user, "id", user) for user in users} await self.bot._whiteblacklist_cache.add_to_whitelist(None, uids) if len(users) > 1: - await ctx.send(_("Users has been added to the allowlist.")) + await ctx.send(_("Users have been added to the allowlist.")) else: await ctx.send(_("User has been added to the allowlist."))