Browse Source

Fix non-working example in commands documentation.

pull/1963/head
Rapptz 6 years ago
parent
commit
d124daef33
  1. 2
      docs/ext/commands/commands.rst

2
docs/ext/commands/commands.rst

@ -422,7 +422,7 @@ By providing the converter it allows us to use them as building blocks for anoth
class MemberRoles(commands.MemberConverter):
async def convert(self, ctx, argument):
member = await super().convert(ctx, argument)
return member.roles
return [role.name for role in member.roles[1:]] # Remove everyone role!
@bot.command()
async def roles(ctx, *, member: MemberRoles):

Loading…
Cancel
Save