Fix bug in Secretariat EditPersonForm, exclude was missing a , to be a tuple
- Legacy-Id: 6894
This commit is contained in:
parent
fdd03eee8c
commit
fcb2dad155
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue