diff --git a/projet_conso.py b/projet_conso.py index 9d9c4e8..b2326e1 100644 --- a/projet_conso.py +++ b/projet_conso.py @@ -33,7 +33,7 @@ def numerojour(date) : separation = date.split("-") annee = int(separation[0]) mois = int(separation[1]) - jour = int(separtation[2]) + jour = int(separation[2]) jours_mois = [31,28,31,30,31,30,31,31,30,31,30,31] if estbissextile(annee) : jours_mois[1] = 29