Browse Source

[commands] Fix NameError in clean_content converter

pull/1623/head
Rapptz 7 years ago
parent
commit
45af0c83de
  1. 2
      discord/ext/commands/converter.py

2
discord/ext/commands/converter.py

@ -458,7 +458,7 @@ class clean_content(Converter):
if ctx.guild:
def resolve_role(_id, *, _find=ctx.guild.get_role):
r = _find(_id, _roles)
r = _find(_id)
return '@' + r.name if r else '@deleted-role'
transformations.update(

Loading…
Cancel
Save