Cómo verificar si un mensaje incluye una palabra discord.py

@bot.event
async def on_message(msg):
    if 'word' in msg.content:
        print('Keyword found')
        # Do stuff here
Dead Dunlin