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

- Legacy-Id: 6895
This commit is contained in:
Ole Laursen 2013-12-12 12:11:09 +00:00
parent fcb2dad155
commit 12960d9204

View file

@ -43,7 +43,7 @@ class DescriptionForm (forms.Form):
class GroupMilestoneForm(forms.ModelForm):
class Meta:
model = GroupMilestone
exclude = ('done')
exclude = ('done',)
# use this method to set attrs which keeps other meta info from model.
def __init__(self, *args, **kwargs):