Skip to content

Commit

Permalink
Fix field name in ValidationError msg
Browse files Browse the repository at this point in the history
  • Loading branch information
MattyMay committed Aug 27, 2024
1 parent d547de6 commit 3961e97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autograder/core/models/group/group.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def clean(self) -> None:
'Soft extended due date must be a valid date')})
except core_ut.InvalidHardDeadlineError:
raise ValidationError(
{'extended_due_date': (
{'hard_extended_due_date': (
'Hard extended due date must be a valid date')})
except core_ut.HardDeadlineBeforeSoftDeadlineError:
raise ValidationError(
Expand Down

0 comments on commit 3961e97

Please sign in to comment.