diff --git a/app/views/notes_formsemestre.py b/app/views/notes_formsemestre.py
index ecacefbc15c431f8b9a7e2f623b62a7fb907e688..54fa6efa9bf241a761caf8a02474e28f5558839a 100644
--- a/app/views/notes_formsemestre.py
+++ b/app/views/notes_formsemestre.py
@@ -448,7 +448,6 @@ def _load_images_refs(infos: list[dict], images: dict):
"""Check if all referenced images in excel (infos)
are present in the zip archive (images) and put them in the infos dicts.
"""
- breakpoint()
for linenum, info in enumerate(infos, start=1):
for key in ("descr_image", "descr_photo_ens"):
info[key] = (
@@ -457,7 +456,7 @@ def _load_images_refs(infos: list[dict], images: dict):
if info[key]:
if info[key] not in images:
raise ScoValueError(
- f"Image référencée en ligne {linenum}, colonne {key} non trouvée dans le zip",
+ f'Image "{info[key]}" référencée en ligne {linenum}, colonne {key} non trouvée dans le zip',
dest_url=url_for(
"notes.formsemestres_import_from_description",
scodoc_dept=g.scodoc_dept,