From 4cbda11f7ea79956538aed6f4147625929782319 Mon Sep 17 00:00:00 2001 From: David Date: Mon, 26 Dec 2022 00:07:44 +0100 Subject: [PATCH] Correction typo --- statistiques/parseStats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/statistiques/parseStats.py b/statistiques/parseStats.py index 338105a..83f6fd3 100755 --- a/statistiques/parseStats.py +++ b/statistiques/parseStats.py @@ -196,7 +196,7 @@ def runMain(): fr = STATS_FR_TOT_FIELDS[i] print(f"{fr}={v}") try: - moyenne_part = int(res['total_participants']) / int(res['conferences']) + moyenne_part = int(res['total_participants']) / int(res['total_conferences_completed']) print(f"Moyenne participants par conference,{moyenne_part}") except: pass