From df6bdb3007694e1476a31e5ba2cd5d511fe2017b Mon Sep 17 00:00:00 2001 From: Chris Rrapi <39552369+crrapi@users.noreply.github.com> Date: Wed, 9 Jan 2019 07:36:43 -0500 Subject: [PATCH] Fix the Context.message example to actually use ctx.message --- docs/faq.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/faq.rst b/docs/faq.rst index c55e5a8fa..3dbfc4c80 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -276,9 +276,8 @@ message. Example: :: @bot.command() - async def joined_at(ctx, member: discord.Member = None): - member = member or ctx.author - await ctx.send('{0} joined at {0.joined_at}'.format(member)) + async def length(ctx): + await ctx.send('Your message is {} characters long.'.format(len(ctx.message.content))) How do I make a subcommand? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~