From e9bc5aaab7b0f5f96e6c7ecc489119320cfcbe7c Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Fri, 19 Aug 2016 14:46:52 -0500 Subject: [PATCH] Corrected what the member was called --- cogs/steam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/steam.py b/cogs/steam.py index 259b258..0711b0b 100644 --- a/cogs/steam.py +++ b/cogs/steam.py @@ -83,7 +83,7 @@ class Steam: stuff_to_print = ['total_kills', 'total_deaths', 'total_wins', 'total_mvps'] stats = "\n".join( "{}: {}".format(d['name'], d['value']) for d in data['playerstats']['stats'] if d['name'] in stuff_to_print) - await self.bot.say("CS:GO Stats for user {}: \n```\n{}```".format(user, stats.title().replace("_", " "))) + await self.bot.say("CS:GO Stats for user {}: \n```\n{}```".format(member, stats.title().replace("_", " "))) def setup(bot):