فهرست منبع

Fixes #16027: Correct typo in error message

teapot 1 سال پیش
والد
کامیت
db823634cf
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      netbox/ipam/models/ip.py

+ 1 - 1
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)
                 })