From db823634cf2f6dd3d0dd1e441a0ef74ddde94096 Mon Sep 17 00:00:00 2001
From: teapot <grncbg@gmail.com>
Date: Wed, 8 May 2024 19:55:56 +0900
Subject: [PATCH] Fixes #16027: Correct typo in error message

---
 netbox/ipam/models/ip.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/netbox/ipam/models/ip.py b/netbox/ipam/models/ip.py
index fb1c123c3..2ae380d63 100644
--- a/netbox/ipam/models/ip.py
+++ b/netbox/ipam/models/ip.py
@@ -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)
                 })