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