dumbass forgot to add ()

This commit is contained in:
WhatDidYouExpect 2025-07-18 01:31:46 +02:00
parent 4a695a7bac
commit cbe7fe201f

2
bot.py
View file

@ -480,7 +480,7 @@ async def about(ctx: commands.Context) -> None:
embed.add_field(name=f"{(_('command_about_embed_field1'))}", value=f"{NAME}", inline=False) embed.add_field(name=f"{(_('command_about_embed_field1'))}", value=f"{NAME}", inline=False)
embed.add_field(name=f"{(_('command_about_embed_field2name'))}", value=f"{(_('command_about_embed_field2value')).format(local_version=local_version, latest_version=latest_version)}", inline=False) embed.add_field(name=f"{(_('command_about_embed_field2name'))}", value=f"{(_('command_about_embed_field2value')).format(local_version=local_version, latest_version=latest_version)}", inline=False)
embed.add_field(name=f"Github", value=get_git_remote_url()) embed.add_field(name=f"Github", value=get_git_remote_url())
embed.add_field(name=f"OS", value=platform.platform) embed.add_field(name=f"OS", value=platform.platform())
await send_message(ctx, embed=embed) await send_message(ctx, embed=embed)