From d38793f9260c1ca8b96a049d04cc801413c8fb0e Mon Sep 17 00:00:00 2001 From: Denise sur Lya Date: Sun, 14 Jun 2020 23:39:59 +0200 Subject: [PATCH] =?utf8?q?Ajout=C3=A9=20une=20ligne=20if=20=5F=5Fname=5F?= =?utf8?q?=5F=20=3D=3D=20"main":=20pour=20que=20=C3=A7a=20marche=20mieux?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- gestion_donnees.py | 4 ++-- 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): """ convertit un nombre de jours en un truc plus lisible en mois, années, jours et renvoie une chaîne sous la forme 3a2m1j par exemple""" annees = int(nombre / jours_dans_annee) - restant = nombre - int(annees*jours_dans_annee) + restant = nombre - round(annees*jours_dans_annee) mois = int(restant/jours_dans_mois) - jours= restant - int(mois*jours_dans_mois) + jours= restant - round(mois*jours_dans_mois) chaine = "" if annees >0: diff --git a/site.py b/site.py index e4c926e..7348472 100644 --- a/site.py +++ b/site.py @@ -72,4 +72,5 @@ def export_donnees(): return flask.Response(texte,mimetype="text/plain") -app.run(host='0.0.0.0',debug=True) \ No newline at end of file +if __name__ == "__main__": + app.run(host='0.0.0.0',debug=True) \ No newline at end of file -- 2.41.0