Skip to content

Commit

Permalink
Fix grammar in uptime command (Cog-Creators#5596)
Browse files Browse the repository at this point in the history
  • Loading branch information
TrustyJAID authored and Drapersniper committed Mar 14, 2022
1 parent 10ca228 commit 4dc2871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redbot/core/core_commands.py
Expand Up @@ -534,7 +534,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 4dc2871

Please sign in to comment.