From 624138a53338d8973e907c1ff863d0b3bcfab3fe Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 10 Sep 2024 13:43:43 -0400 Subject: [PATCH] Update error message --- netbox_branching/models/branches.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox_branching/models/branches.py b/netbox_branching/models/branches.py index 9291c17..23591d0 100644 --- a/netbox_branching/models/branches.py +++ b/netbox_branching/models/branches.py @@ -144,8 +144,8 @@ def clean(self): if working_branch_count >= max_working_branches: raise ValidationError( _( - "The configured maximum number of active branches ({max}) cannot be exceeded. One or more " - "active branches must be archived or deleted before a new branch may be created." + "The configured maximum number of working branches ({max}) cannot be exceeded. One or more " + "working branches must be merged or archived before a new branch may be created." ).format(max=max_working_branches) )