forked from ScoDoc/ScoDoc
tolere module_type NULL (bug Orléans/Chimie ?)
This commit is contained in:
parent
4511951255
commit
5e65e75a3b
@ -1210,6 +1210,7 @@ def formsemestre_tableau_modules(
|
|||||||
)
|
)
|
||||||
|
|
||||||
if mod.module_type in (
|
if mod.module_type in (
|
||||||
|
None, # ne devrait pas être nécessaire car la migration a remplacé les NULLs
|
||||||
ModuleType.STANDARD,
|
ModuleType.STANDARD,
|
||||||
ModuleType.RESSOURCE,
|
ModuleType.RESSOURCE,
|
||||||
ModuleType.SAE,
|
ModuleType.SAE,
|
||||||
@ -1249,7 +1250,7 @@ def formsemestre_tableau_modules(
|
|||||||
% (modimpl["moduleimpl_id"], nb_malus_notes)
|
% (modimpl["moduleimpl_id"], nb_malus_notes)
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
raise ValueError("Invalid module_type") # a bug
|
raise ValueError(f"Invalid module_type {mod.module_type}") # a bug
|
||||||
|
|
||||||
H.append("</td></tr>")
|
H.append("</td></tr>")
|
||||||
return "\n".join(H)
|
return "\n".join(H)
|
||||||
|
Loading…
Reference in New Issue
Block a user