Fixes #16027: Correct typo in error message

This commit is contained in:
teapot 2024-05-08 19:55:56 +09:00 committed by Jeremy Stretch
parent 195dbaed00
commit db823634cf
1 changed files with 1 additions and 1 deletions

View File

@ -574,7 +574,7 @@ class IPRange(PrimaryModel):
if not self.end_address > self.start_address:
raise ValidationError({
'end_address': _(
"Ending address must be lower than the starting address ({start_address})"
"Ending address must be greater than the starting address ({start_address})"
).format(start_address=self.start_address)
})