diff options
author | Magnus Hagander | 2019-02-06 18:58:48 +0000 |
---|---|---|
committer | Magnus Hagander | 2019-02-06 19:01:54 +0000 |
commit | 20d4710f4ca1a36f6194eaaf7880f39a2349ce53 (patch) | |
tree | 2271758531f82cccfec87494e7f276026bb176c5 /pgcommitfest/commitfest/forms.py | |
parent | 37248717c373033626fae7396bc8ac47374abb30 (diff) |
Fix class property reference for py3
Diffstat (limited to 'pgcommitfest/commitfest/forms.py')
-rw-r--r-- | pgcommitfest/commitfest/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pgcommitfest/commitfest/forms.py b/pgcommitfest/commitfest/forms.py index 1ab8269..85cec79 100644 --- a/pgcommitfest/commitfest/forms.py +++ b/pgcommitfest/commitfest/forms.py @@ -98,7 +98,7 @@ class CommentForm(forms.Form): review_doc = reviewfield('Documentation') message = forms.CharField(required=True, widget=forms.Textarea) - newstatus = forms.ChoiceField(choices=PatchOnCommitFest.OPEN_STATUS_CHOICES, label='New status') + newstatus = forms.ChoiceField(choices=PatchOnCommitFest.OPEN_STATUS_CHOICES(), label='New status') def __init__(self, patch, poc, is_review, *args, **kwargs): super(CommentForm, self).__init__(*args, **kwargs) |