From 2ae4e7272d8cae1a71bc70a75ec83c5ce1b15c77 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Thu, 10 Mar 2016 14:22:19 +0100 Subject: [PATCH] Subscribers should be excluded from new patches form --- pgcommitfest/commitfest/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.39.5