Fix of fix

This commit is contained in:
Maël 2017-06-11 18:33:50 -04:00
parent f26274bbdc
commit 34a031fd76

2
bot.py
View file

@ -89,7 +89,7 @@ async def on_message(message):
if re.match(r'^<@(\w+)>$', message.content):
await bot.send_message(message.channel, message.author.mention + " > Tu voulais lui dire quoi ? Tu le mentionne sans message !")
if re.match(r"[A-Z]{5,}") and not message.author.bot and len(message.content) > 5:
if re.match(r"[A-Z]{5,}", message.content) and not message.author.bot and len(message.content) > 5:
await bot.send_message(message.channel, message.author.mention + " > Evite les messages en majuscule, ce n'est pas la peine de crier !")
await bot.process_commands(message)