From 44193995a3704f4f7b7f3e7b193f974e5da5b10f Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Sun, 18 Aug 2013 19:15:47 +0200 Subject: [PATCH] Don't specify lastmail when creating new patches :O --- 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 2a70cc8..78219c3 100644 --- a/pgcommitfest/commitfest/forms.py +++ b/pgcommitfest/commitfest/forms.py @@ -52,7 +52,7 @@ class NewPatchForm(forms.ModelForm): class Meta: model = Patch - exclude = ('commitfests', 'mailthreads', 'modified', 'authors', 'reviewers', 'committer', 'wikilink', 'gitlink', ) + exclude = ('commitfests', 'mailthreads', 'modified', 'authors', 'reviewers', 'committer', 'wikilink', 'gitlink', 'lastmail', ) def _fetch_thread_choices(patch): for mt in patch.mailthread_set.order_by('-latestmessage'): -- 2.39.5