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

Fix: evaluations bloquées pour toujours n'empache pas jury. Closes #1048

parent 5cd2d2a4
No related branches found
No related tags found
No related merge requests found
......@@ -536,6 +536,7 @@ class Evaluation(models.ScoDocModel):
Evaluation.query.filter(
Evaluation.blocked_until != None, # pylint: disable=C0121
Evaluation.blocked_until >= now,
Evaluation.blocked_until < cls.BLOCKED_FOREVER,
)
.join(ModuleImpl)
.filter_by(formsemestre_id=formsemestre.id)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment