diff options
author | Magnus Hagander | 2013-08-24 13:34:33 +0000 |
---|---|---|
committer | Magnus Hagander | 2013-08-24 13:34:33 +0000 |
commit | 4bde29ba4337e593acaf2b5b10f15cbd16fd203d (patch) | |
tree | 82d45f23b02a0173d4a0b4a2f73cc6bc6c1560e3 /pgcommitfest/commitfest/models.py | |
parent | 34faea0683cb2326f41d899312a30e1a979e996c (diff) |
Stremaline the new patch flow
Diffstat (limited to 'pgcommitfest/commitfest/models.py')
-rw-r--r-- | pgcommitfest/commitfest/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pgcommitfest/commitfest/models.py b/pgcommitfest/commitfest/models.py index 090804b..75078a0 100644 --- a/pgcommitfest/commitfest/models.py +++ b/pgcommitfest/commitfest/models.py @@ -62,10 +62,10 @@ class Patch(models.Model, DiffableModel): commitfests = models.ManyToManyField(CommitFest, through='PatchOnCommitFest') # If there is a wiki page discussing this patch - wikilink = models.URLField(blank=True, null=True) + wikilink = models.URLField(blank=True, null=True, default='') # If there is a git repo about this patch - gitlink = models.URLField(blank=True, null=True) + gitlink = models.URLField(blank=True, null=True, default='') # Mailthreads are OneToMany in the other direction #mailthreads_set = ... |