mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 09:51:22 -06:00
Fixes #16027: Correct typo in error message
This commit is contained in:
parent
195dbaed00
commit
db823634cf
@ -574,7 +574,7 @@ class IPRange(PrimaryModel):
|
|||||||
if not self.end_address > self.start_address:
|
if not self.end_address > self.start_address:
|
||||||
raise ValidationError({
|
raise ValidationError({
|
||||||
'end_address': _(
|
'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)
|
).format(start_address=self.start_address)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user