Fix bug in Secretariat EditPersonForm, exclude was missing a , to be a tuple

- Legacy-Id: 6894
This commit is contained in:
Ole Laursen 2013-12-12 12:10:05 +00:00
parent fdd03eee8c
commit fcb2dad155

View file

@ -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)