From f85deecb64c69c7c66643f4b11a49c1b01020b28 Mon Sep 17 00:00:00 2001 From: Emmanuel Viennet Date: Mon, 31 Jan 2022 22:41:34 +0100 Subject: [PATCH] get_etud_dept: 404 si dept inexistant --- app/views/scodoc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/scodoc.py b/app/views/scodoc.py index 0b37da54..e60fd63e 100644 --- a/app/views/scodoc.py +++ b/app/views/scodoc.py @@ -191,7 +191,7 @@ def get_etud_dept(): # le choix a peu d'importance... last_etud = etuds[-1] - return Departement.query.get(last_etud.dept_id).acronym + return Departement.query.get_or_404(last_etud.dept_id).acronym # Bricolage pour le portail IUTV avec ScoDoc 7: (DEPRECATED: NE PAS UTILISER !)