Merge pull request #9275 from kkthxbye-code/fix-9267

Fixes #9267 - Fix early terminated tuple in IPAddressRoleChoices
This commit is contained in:
Jeremy Stretch 2022-05-02 09:19:11 -04:00 committed by GitHub
commit f6402a8b62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,7 @@ class IPAddressRoleChoices(ChoiceSet):
(ROLE_VRRP, 'VRRP', 'green'),
(ROLE_HSRP, 'HSRP', 'green'),
(ROLE_GLBP, 'GLBP', 'green'),
(ROLE_CARP, 'CARP'), 'green',
(ROLE_CARP, 'CARP', 'green'),
)