Fix minor convention mistakes in basic examples

Co-authored-by: Narmy <67862800+NarmyOnDiscord@users.noreply.github.com>
This commit is contained in:
GoogleGenius
2022-04-30 17:40:42 -05:00
committed by GitHub
parent 14e83dff0e
commit 61105ce925
2 changed files with 9 additions and 8 deletions

View File

@@ -57,7 +57,7 @@ async def repeat(ctx, times: int, content='repeating...'):
@bot.command()
async def joined(ctx, member: discord.Member):
"""Says when a member joined."""
await ctx.send(f'{member.name} joined in {member.joined_at}')
await ctx.send(f'{member.name} joined {discord.utils.format_dt(member.joined_at)}')
@bot.group()