Skip to content

Commit

Permalink
Update error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Sep 10, 2024
1 parent 1e718d1 commit 624138a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions netbox_branching/models/branches.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)

Expand Down

0 comments on commit 624138a

Please sign in to comment.