From 58d8cb4d1f761015044d043c494c0a8d09aad2d2 Mon Sep 17 00:00:00 2001 From: TrustyJAID Date: Mon, 28 Feb 2022 08:57:59 -0700 Subject: [PATCH] Fix grammar in uptime command (#5596) --- 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 010b5a623..77e5a9f26 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -534,7 +534,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"" ) )