From 9ba73e70a2b9e113d558e2fc6266841bb0b8673b Mon Sep 17 00:00:00 2001 From: Ryan Cross Date: Wed, 10 May 2017 19:04:11 +0000 Subject: [PATCH] Fixes #2211. Session admin edit fails if no resources selected. Commit ready for merge. - Legacy-Id: 13303 --- ietf/meeting/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/meeting/models.py b/ietf/meeting/models.py index ef207ee06..27333448d 100644 --- a/ietf/meeting/models.py +++ b/ietf/meeting/models.py @@ -917,7 +917,7 @@ class Session(models.Model): remote_instructions = models.CharField(blank=True,max_length=1024) materials = models.ManyToManyField(Document, through=SessionPresentation, blank=True) - resources = models.ManyToManyField(ResourceAssociation) + resources = models.ManyToManyField(ResourceAssociation, blank=True) unique_constraints_dict = None