1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-04 07:32:18 +02:00

Fix error

This commit is contained in:
2022-05-15 16:16:41 +02:00
parent d18f76cf80
commit 50409931cf
2 changed files with 2 additions and 2 deletions

View File

@ -246,7 +246,7 @@ class UploadNotesForm(forms.Form):
jury = User.objects.filter(first_name=first_name, last_name=last_name)
if jury.count() != 1:
self.form.add_error('file', _("The following user was not found:") + " " + name)
self.add_error('file', _("The following user was not found:") + " " + name)
continue
jury = jury.get()