diff options
author | Denise sur Lya <sekhmet@lya> | 2020-06-24 14:59:46 +0200 |
---|---|---|
committer | Denise sur Lya <sekhmet@lya> | 2020-06-24 14:59:46 +0200 |
commit | 54c718310ef31192271125987b82ed1c281a3911 (patch) | |
tree | 534522e89720f0c8e6d52b8c332c6d26832b2239 | |
parent | 7157c30e60d0a7c8902e7bd630c21095058fc5da (diff) | |
download | oms-54c718310ef31192271125987b82ed1c281a3911.tar.gz oms-54c718310ef31192271125987b82ed1c281a3911.tar.zst oms-54c718310ef31192271125987b82ed1c281a3911.zip |
Petit bug corrigé (âge maxi)
-rw-r--r-- | data/changelog_data.txt | 2 | ||||
-rw-r--r-- | gestion_donnees.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/data/changelog_data.txt b/data/changelog_data.txt index 5b15e7e..45c4238 100644 --- a/data/changelog_data.txt +++ b/data/changelog_data.txt | |||
@@ -1,3 +1,5 @@ | |||
1 | "Version 1.0001","24/06/2020","<p>Petit bug corrigé (lors du choix de l'âge maxi sur la courbe)</p>" | ||
2 | |||
1 | "Version 1.0","22/06/2020","<p>On release ! :) Vous pouvez voir plus bas la liste des trucs implémentés jusque-là. Je ne dis pas que c'est fini, mais c'est assez sûr pour être lancé. Il reste des bugs et des améliorations bien sûr ! | 3 | "Version 1.0","22/06/2020","<p>On release ! :) Vous pouvez voir plus bas la liste des trucs implémentés jusque-là. Je ne dis pas que c'est fini, mais c'est assez sûr pour être lancé. Il reste des bugs et des améliorations bien sûr ! |
2 | </p> | 4 | </p> |
3 | <ul> | 5 | <ul> |
diff --git a/gestion_donnees.py b/gestion_donnees.py index d214bcd..ea1f259 100644 --- a/gestion_donnees.py +++ b/gestion_donnees.py | |||
@@ -192,7 +192,7 @@ def gere_configuration(data,liste_err): | |||
192 | if maxi == "": | 192 | if maxi == "": |
193 | configuration["maxi"] = 0 | 193 | configuration["maxi"] = 0 |
194 | else: | 194 | else: |
195 | configuration["maxi"] = convertit_jours_vers_python(maxi,liste_err) | 195 | configuration["maxi"] = int(convertit_jours_vers_python(maxi,liste_err)) |
196 | 196 | ||
197 | # dimensions du graphique | 197 | # dimensions du graphique |
198 | largeur = data.get("largeur","") | 198 | largeur = data.get("largeur","") |