1
0
Fork 0
mirror of synced 2024-06-02 18:54:33 +12:00

Fixed syntax error

This commit is contained in:
Phxntxm 2016-07-17 10:25:39 -05:00
parent dc8b14f581
commit 904488c589

View file

@ -45,7 +45,7 @@ class Stats:
for b_id,amt in boops.get(ctx.message.author.id).items():
member = find(lambda m: m.id == b_id, self.bot.get_all_members())
if member in members:
output += "\n{0.name}: {1} times".format(member.name, amt)
output += "\n{0.name}: {1} times".format(member, amt)
await self.bot.say("```{}```".format(output))
@commands.command(pass_context=True, no_pm=True)