Skip to content

Commit fcb2dad

Browse files
committed
Fix bug in Secretariat EditPersonForm, exclude was missing a , to be a tuple
- Legacy-Id: 6894
1 parent fdd03ee commit fcb2dad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/secr/rolodex/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Meta:
2929
class EditPersonForm(forms.ModelForm):
3030
class Meta:
3131
model = Person
32-
exclude = ('time')
32+
exclude = ('time',)
3333

3434
def __init__(self, *args, **kwargs):
3535
super(EditPersonForm, self).__init__(*args,**kwargs)

0 commit comments

Comments
 (0)