Missing comma...

This commit is contained in:
Joseph Kennedy 2017-08-22 20:27:38 -04:00
parent f7bb400940
commit 89b6aee205

View File

@ -1543,7 +1543,7 @@ class InterfaceCSVForm(forms.ModelForm):
)
lag = FlexibleModelChoiceField(
required=False,
queryset = Interface.objects.order_naturally().filter(form_factor=IFACE_FF_LAG)
queryset = Interface.objects.order_naturally().filter(form_factor=IFACE_FF_LAG),
help_text='Lag Name',
error_messages={'invalid_choice': 'Lag not found.'}
)