Correction.

Le choix par defaut ne marchait pas.

darcs-hash:20071218005218-af139-a0606ebac7075654f6fc833b7e1ca97cbfd31cb9.gz
This commit is contained in:
Jeremie Dimino 2007-12-18 01:52:18 +01:00
parent 20d5ced53f
commit 072d2a9609

View file

@ -63,9 +63,10 @@ ou (choix, doc, valeur) ou encore (choix, doc, valeur, operation), où:
raise KeyboardInterrupt()
if answer == " ":
for choice in choices:
if choice[0].lower != choix[0]:
if choice[0].lower != choice[0]:
answer = choice[0][0].lower()
break
if answer == " ":
cprint("Aucun choix par défaut!")
else:
answer = answer.lower()