Fix some left over incorrect snippets.

This commit is contained in:
Rapptz
2017-05-12 21:11:22 -04:00
parent a93145d1f0
commit cf2269fdf4
2 changed files with 3 additions and 3 deletions

View File

@ -242,7 +242,7 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable):
return m.author == client.user
deleted = await channel.purge(limit=100, check=is_me)
await channel.send_message('Deleted {} message(s)'.format(len(deleted)))
await channel.send('Deleted {} message(s)'.format(len(deleted)))
Returns
--------