Skip to content

Commit 12960d9

Browse files
committed
Fix bug in Secretariat GroupMilestoneForm, exclude was missing a , to be a tuple
- Legacy-Id: 6895
1 parent fcb2dad commit 12960d9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/secr/groups/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class DescriptionForm (forms.Form):
4343
class GroupMilestoneForm(forms.ModelForm):
4444
class Meta:
4545
model = GroupMilestone
46-
exclude = ('done')
46+
exclude = ('done',)
4747

4848
# use this method to set attrs which keeps other meta info from model.
4949
def __init__(self, *args, **kwargs):

0 commit comments

Comments
 (0)