From a2e552fca1bb6c8ba339147de6d6f3c26cbeda0a Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Thu, 20 Mar 2025 11:19:13 -0700 Subject: [PATCH] Update netbox/dcim/models/racks.py Co-authored-by: Jeremy Stretch --- netbox/dcim/models/racks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/models/racks.py b/netbox/dcim/models/racks.py index 9e3efc3a9..127d59737 100644 --- a/netbox/dcim/models/racks.py +++ b/netbox/dcim/models/racks.py @@ -374,7 +374,7 @@ class Rack(ContactsMixin, ImageAttachmentsMixin, RackBase): if ( self.outer_width is not None or self.outer_depth is not None or self.outer_height is not None ) and not self.outer_unit: - raise ValidationError(_("Must specify a unit when setting an outer width/depth/height")) + raise ValidationError(_("Must specify a unit when setting an outer dimension")) # Validate max_weight and weight_unit if self.max_weight and not self.weight_unit: