Fix typo in decorator

This commit is contained in:
Dustin Pianalto 2019-12-14 01:51:13 -09:00
parent d8691f4191
commit 217e446f07

View File

@ -11,7 +11,7 @@ class UserEvents(commands.Cog):
def __init__(self, bot): def __init__(self, bot):
self.bot = bot self.bot = bot
@commands.Cog.listner() @commands.Cog.listener()
async def on_user_update(self, before, after): async def on_user_update(self, before, after):
data = { data = {
'username': after.name, 'username': after.name,