From 86018bc24d11a2455d9f70c489f018e861e4b9e2 Mon Sep 17 00:00:00 2001 From: phxntxm Date: Thu, 18 Aug 2016 12:52:25 -0500 Subject: [PATCH] Removed attempt to get .items() of a tuple) --- cogs/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/stats.py b/cogs/stats.py index 2039598..51501ba 100644 --- a/cogs/stats.py +++ b/cogs/stats.py @@ -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)