Vrai se dit True en Python, pas true
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
parent
3d3539930a
commit
25035a3221
2
main.py
2
main.py
|
@ -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:]))
|
||||
|
|
Loading…
Reference in New Issue