Skip to content

Commit

Permalink
[3.4] Fix grammar in uptime command (#5596) (#5738)
Browse files Browse the repository at this point in the history
(cherry picked from commit 58d8cb4)

Co-authored-by: TrustyJAID <TrustyJAID@gmail.com>

Co-authored-by: TrustyJAID <TrustyJAID@gmail.com>
  • Loading branch information
Red-GitHubBot and TrustyJAID committed Jun 4, 2022
1 parent 9d81cdf commit bc9404e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redbot/core/core_commands.py
Expand Up @@ -535,7 +535,7 @@ async def uptime(self, ctx: commands.Context):
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"<t:{int(uptime.timestamp())}:f>"
)
)
Expand Down

0 comments on commit bc9404e

Please sign in to comment.