Skip to content

Commit

Permalink
Fixes #16027: Correct typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
grncbg authored and jeremystretch committed May 8, 2024
1 parent 195dbae commit db82363
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox/ipam/models/ip.py
Expand Up @@ -574,7 +574,7 @@ def clean(self):
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)
})

Expand Down

0 comments on commit db82363

Please sign in to comment.