1
0
Fork 0
mirror of synced 2024-06-29 03:30:57 +12:00

Removed attempt to get .items() of a tuple)

This commit is contained in:
phxntxm 2016-08-18 12:52:25 -05:00
parent 8f3f3ca58d
commit 86018bc24d

View file

@ -51,7 +51,7 @@ class Stats:
output = "\n".join(
"{0.display_name}: {1} times".format(discord.utils.get(self.bot.get_all_members(), id=m_id), amt) for
m_id, amt in sorted_booped_members.items())
m_id, amt in sorted_booped_members)
await self.bot.say("You have booped:```\n{}```".format(output))
@commands.command(pass_context=True, no_pm=True)