Vrai se dit True en Python, pas true

Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
Yohann D'ANELLO 2021-01-26 16:27:40 +01:00
parent 3d3539930a
commit 25035a3221
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ def main():
print("Bienvenue dans le chatbot du séminaire de l'intégration continue !")
print("Veuillez taper une commande. Tapez \"help\" pour afficher l'aide.")
while true:
while True:
command = input("> ")
args = command.split(" ")
print(globals()[args[0]](*args[1:]))