check matieres

This commit is contained in:
Emmanuel Viennet 2022-02-23 09:42:41 +01:00
parent bd33b288db
commit e9ad417f1f
2 changed files with 6 additions and 2 deletions

View File

@ -522,7 +522,11 @@ class NotesTableCompat(ResultatsSemestre):
"""moyenne d'un étudiant dans une matière (ou NA si pas de notes)"""
if not self.moyennes_matieres:
return "nd"
return self.moyennes_matieres[matiere_id].get(etudid, "-")
return (
self.moyennes_matieres[matiere_id].get(etudid, "-")
if matiere_id in self.moyennes_matieres
else "-"
)
def get_etud_mod_moy(self, moduleimpl_id: int, etudid: int) -> float:
"""La moyenne de l'étudiant dans le moduleimpl

View File

@ -1,7 +1,7 @@
# -*- mode: python -*-
# -*- coding: utf-8 -*-
SCOVERSION = "9.1.62"
SCOVERSION = "9.1.63"
SCONAME = "ScoDoc"