Parcourir la source

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

Fixes #9267 - Fix early terminated tuple in IPAddressRoleChoices
Jeremy Stretch il y a 4 ans
Parent
commit
f6402a8b62
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      netbox/ipam/choices.py

+ 1 - 1
netbox/ipam/choices.py

@@ -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'),
     )