Correction de la prise en compte de la commande stop. closing #13
This commit is contained in:
parent
2f4fd889b3
commit
69b69693f7
@ -7,7 +7,7 @@ class Completion:
|
||||
Si la commande est bonne, le bot renvoie la liste des personnes ayant participé
|
||||
au sujet en cours mais n'ayant pas encore fini (commentaire %fini ou % fini).
|
||||
"""
|
||||
if message.lower() in ("!complet", ):
|
||||
if message.lower() == "!complet":
|
||||
logger.info("!complet caught.")
|
||||
|
||||
if not bot.review.is_started:
|
||||
|
@ -6,7 +6,7 @@ class StopReview:
|
||||
"""
|
||||
Si la commande est bonne, le bot abandonne la revue hebdomadaire en cours.
|
||||
"""
|
||||
if message.lower() in ("!stop"):
|
||||
if message.lower() == "!stop":
|
||||
logger.info("!stop caught.")
|
||||
|
||||
if not bot.review.is_started:
|
||||
|
Loading…
Reference in New Issue
Block a user