summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander2018-02-21 18:57:50 +0000
committerMagnus Hagander2018-02-21 18:57:50 +0000
commitaf73b943f6649f1f285a2662e49b840f66fe1694 (patch)
tree91f1900d7c1ae53b3d1ffd468319bef7de2306ee
parentb8274b5875a4742800307ed645f1137c10e2a09d (diff)
Fix warning triggered in django 1.11
-rw-r--r--pgcommitfest/commitfest/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pgcommitfest/commitfest/models.py b/pgcommitfest/commitfest/models.py
index 5ee0a5b..45f3762 100644
--- a/pgcommitfest/commitfest/models.py
+++ b/pgcommitfest/commitfest/models.py
@@ -261,7 +261,7 @@ class MailThread(models.Model):
# so we can keep track of when there was last a change on the
# thread in question.
messageid = models.CharField(max_length=1000, null=False, blank=False, unique=True)
- patches = models.ManyToManyField(Patch, blank=False, null=False)
+ patches = models.ManyToManyField(Patch, blank=False)
subject = models.CharField(max_length=500, null=False, blank=False)
firstmessage = models.DateTimeField(null=False, blank=False)
firstauthor = models.CharField(max_length=500, null=False, blank=False)