Explorar o código

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

Fixes #9267 - Fix early terminated tuple in IPAddressRoleChoices
Jeremy Stretch %!s(int64=3) %!d(string=hai) anos
pai
achega
f6402a8b62
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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'),
     )