Skip to content

Commit

Permalink
fix lenghth
Browse files Browse the repository at this point in the history
  • Loading branch information
vikibrezinova committed Apr 14, 2024
1 parent cbe4c1b commit 67f154b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions competition/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def upload_solutions_with_points(self, request, pk=None):

with zipfile.ZipFile(zfile) as zfile:
if zfile.testzip():
raise exceptions.ParseError(detail='Súbor zip poškodený')
raise exceptions.ParseError(detail='Súbor zip je poškodený')

parsed_filenames = []
errors = []
Expand All @@ -394,19 +394,20 @@ def upload_solutions_with_points(self, request, pk=None):
except (IndexError, ValueError, AssertionError):
errors.append({
'filename': filename,
'status': 'Nedá sa prečítať názov súboru. Skontroluj, že názov súboru je v tvare BODY-MENO-ID_ULOHY-ID_REGISTRACIE_USERA.pdf'
'status': 'Nedá sa prečítať názov súboru. Skontroluj, že názov súboru'
'je v tvare BODY-MENO-ID_ULOHY-ID_REGISTRACIE_USERA.pdf'
})
continue
except EventRegistration.DoesNotExist:
errors.append({
'filename': filename,
'status': f'Registrácia užívateľa s id {registration_pk} neexistuje'
'status': f'Registrácia používateľa s id {registration_pk} neexistuje'
})
continue
except Solution.DoesNotExist:
errors.append({
'filename': filename,
'status': f'Riešenie pre registráciu užívateľa s id {registration_pk}'
'status': f'Riešenie pre registráciu používateľa s id {registration_pk}'
f'a úlohy id {problem_pk} neexistuje'
})
continue
Expand Down

0 comments on commit 67f154b

Please sign in to comment.