diff options
-rw-r--r-- | gestion_donnees.py | 4 | ||||
-rw-r--r-- | site.py | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/gestion_donnees.py b/gestion_donnees.py index 2ba945d..2177fc8 100644 --- a/gestion_donnees.py +++ b/gestion_donnees.py | |||
@@ -51,9 +51,9 @@ def convertit_age_vers_texte(nombre): | |||
51 | """ convertit un nombre de jours en un truc plus lisible en mois, années, jours | 51 | """ convertit un nombre de jours en un truc plus lisible en mois, années, jours |
52 | et renvoie une chaîne sous la forme 3a2m1j par exemple""" | 52 | et renvoie une chaîne sous la forme 3a2m1j par exemple""" |
53 | annees = int(nombre / jours_dans_annee) | 53 | annees = int(nombre / jours_dans_annee) |
54 | restant = nombre - int(annees*jours_dans_annee) | 54 | restant = nombre - round(annees*jours_dans_annee) |
55 | mois = int(restant/jours_dans_mois) | 55 | mois = int(restant/jours_dans_mois) |
56 | jours= restant - int(mois*jours_dans_mois) | 56 | jours= restant - round(mois*jours_dans_mois) |
57 | 57 | ||
58 | chaine = "" | 58 | chaine = "" |
59 | if annees >0: | 59 | if annees >0: |
@@ -72,4 +72,5 @@ def export_donnees(): | |||
72 | 72 | ||
73 | return flask.Response(texte,mimetype="text/plain") | 73 | return flask.Response(texte,mimetype="text/plain") |
74 | 74 | ||
75 | app.run(host='0.0.0.0',debug=True) \ No newline at end of file | 75 | if __name__ == "__main__": |
76 | app.run(host='0.0.0.0',debug=True) \ No newline at end of file | ||