Ajour de la commande '!complet' dans le message d'aide

This commit is contained in:
Mindiell 2024-10-12 11:28:13 +02:00
parent 9d6612a9d7
commit 2f4fd889b3
2 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ import settings
class HebdoBot(IrcBot): class HebdoBot(IrcBot):
def __init__(self, settings): def __init__(self, settings):
super().__init__(settings) super().__init__(settings)
self.VERSION = "3.0.0" self.VERSION = "3.1.0"
self.review = Review() self.review = Review()
for event in events: for event in events:

View File

@ -30,9 +30,9 @@ class Help:
" !fin : terminer la revue en cours", " !fin : terminer la revue en cours",
" !stop  : abandonner la revue en cours", " !stop  : abandonner la revue en cours",
" ", " ",
"Autres commandes : !anniv, !bonjour, !chrono, !date, !hello, " "Autres commandes : !anniv, !bonjour, !chrono, !complet, !date, "
"!licence, !manquantes, !merci, !record, !salut, !stats, !status, " "!hello, !licence, !manquantes, !merci, !record, !salut, !stats, "
"!version", "!status, !version",
), ),
) )