From fcb2dad15520fa91cf822a9f98581284f629a58c Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Thu, 12 Dec 2013 12:10:05 +0000 Subject: [PATCH] Fix bug in Secretariat EditPersonForm, exclude was missing a , to be a tuple - Legacy-Id: 6894 --- ietf/secr/rolodex/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/secr/rolodex/forms.py b/ietf/secr/rolodex/forms.py index be6dbd0a9..911d77676 100644 --- a/ietf/secr/rolodex/forms.py +++ b/ietf/secr/rolodex/forms.py @@ -29,7 +29,7 @@ class EmailForm(forms.ModelForm): class EditPersonForm(forms.ModelForm): class Meta: model = Person - exclude = ('time') + exclude = ('time',) def __init__(self, *args, **kwargs): super(EditPersonForm, self).__init__(*args,**kwargs)