Skip to content
Snippets Groups Projects
Commit 5eed3924 authored by Emmanuel Viennet's avatar Emmanuel Viennet
Browse files

Fix: bulletin avec UE sans ECTS

parent 592d0741
No related branches found
No related tags found
No related merge requests found
...@@ -435,7 +435,7 @@ class BulletinGeneratorStandard(sco_bulletins_generator.BulletinGenerator): ...@@ -435,7 +435,7 @@ class BulletinGeneratorStandard(sco_bulletins_generator.BulletinGenerator):
plusminus = pluslink plusminus = pluslink
try: try:
ects_txt = str(int(ue["ects"])) ects_txt = str(int(ue["ects"]))
except (ValueError, KeyError): except (ValueError, KeyError, TypeError):
ects_txt = "-" ects_txt = "-"
t = { t = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment