summaryrefslogtreecommitdiff
path: root/pgcommitfest/commitfest/forms.py
diff options
context:
space:
mode:
authorMagnus Hagander2013-08-18 17:15:47 +0000
committerMagnus Hagander2013-08-18 17:15:47 +0000
commit44193995a3704f4f7b7f3e7b193f974e5da5b10f (patch)
tree0164a15cfce20d811fd950df36e959eec4c09c86 /pgcommitfest/commitfest/forms.py
parentfc14d745d311b43ac993af91a5914f545f2b27e5 (diff)
Don't specify lastmail when creating new patches :O
Diffstat (limited to 'pgcommitfest/commitfest/forms.py')
-rw-r--r--pgcommitfest/commitfest/forms.py2
1 files changed, 1 insertions, 1 deletions
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'):