From 269cd1536badfbc1f108ae06ba64e16fc428c596 Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Tue, 8 Oct 2024 14:38:35 -0700 Subject: [PATCH] fix comma --- netbox/vpn/forms/model_forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/vpn/forms/model_forms.py b/netbox/vpn/forms/model_forms.py index c6e32b596..dee98afd3 100644 --- a/netbox/vpn/forms/model_forms.py +++ b/netbox/vpn/forms/model_forms.py @@ -252,7 +252,7 @@ class TunnelTerminationForm(NetBoxModelForm): ) fieldsets = ( - FieldSet('tunnel', 'role', 'type', 'parent', 'termination' 'outside_ip', 'tags'), + FieldSet('tunnel', 'role', 'type', 'parent', 'termination', 'outside_ip', 'tags'), ) class Meta: