diff options
author | Magnus Hagander | 2016-03-10 13:22:19 +0000 |
---|---|---|
committer | Magnus Hagander | 2016-03-10 13:22:19 +0000 |
commit | 2ae4e7272d8cae1a71bc70a75ec83c5ce1b15c77 (patch) | |
tree | 81fdb0fc4f362d045dd74fd1dd1acbb3c743ffff /pgcommitfest/commitfest/forms.py | |
parent | b6560189236779953947717f55685abab4e9d2ce (diff) |
Subscribers should be excluded from new patches form
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 67205d2..0daf4a9 100644 --- a/pgcommitfest/commitfest/forms.py +++ b/pgcommitfest/commitfest/forms.py @@ -57,7 +57,7 @@ class NewPatchForm(forms.ModelForm): class Meta: model = Patch - exclude = ('commitfests', 'mailthreads', 'modified', 'authors', 'reviewers', 'committer', 'wikilink', 'gitlink', 'lastmail', ) + exclude = ('commitfests', 'mailthreads', 'modified', 'authors', 'reviewers', 'committer', 'wikilink', 'gitlink', 'lastmail', 'subscribers', ) def clean_threadmsgid(self): try: |