From bc9404e9b267a7e23ef2b48fd3c9292c4d381cee Mon Sep 17 00:00:00 2001 From: Red-GitHubBot <88117545+Red-GitHubBot@users.noreply.github.com> Date: Sat, 4 Jun 2022 03:02:52 +0200 Subject: [PATCH] [3.4] Fix grammar in uptime command (#5596) (#5738) (cherry picked from commit 58d8cb4d1f761015044d043c494c0a8d09aad2d2) Co-authored-by: TrustyJAID Co-authored-by: TrustyJAID --- 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 6a6cd5987..2b88e55ce 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -535,7 +535,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic): uptime = self.bot.uptime.replace(tzinfo=datetime.timezone.utc) uptime_str = humanize_timedelta(timedelta=delta) or _("Less than one second.") await ctx.send( - _("Been up for: **{time_quantity}** (since {timestamp})").format( + _("I have been up for: **{time_quantity}** (since {timestamp})").format( time_quantity=uptime_str, timestamp=f"" ) )