Przeglądaj źródła

Fix early terminated tuple in IPAddressRoleChoices

kkthxbye 3 lat temu
rodzic
commit
30d4097fd8
1 zmienionych plików z 1 dodań i 1 usunięć
  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_VRRP, 'VRRP', 'green'),
         (ROLE_HSRP, 'HSRP', 'green'),
         (ROLE_HSRP, 'HSRP', 'green'),
         (ROLE_GLBP, 'GLBP', 'green'),
         (ROLE_GLBP, 'GLBP', 'green'),
-        (ROLE_CARP, 'CARP'), 'green',
+        (ROLE_CARP, 'CARP', 'green'),
     )
     )