From ddc3553656096e8cfaa5f4dd6d88783b02c697a4 2015-12-31 17:35:22 From: Martey Dodoo Date: 2015-12-31 17:35:22 Subject: [PATCH] Remove duplicate Slot.save method. Remove "save" method in Slot model since #107 added another "save" method. This fixes the automated test failures in Travis CI. --- diff --git a/symposion/schedule/models.py b/symposion/schedule/models.py index da1a649eae974bf7c17ab4d8b613b95e74ff487e..e471a522f6a217f50e1a191162a6ac57aa6523a0 100644 --- a/symposion/schedule/models.py +++ b/symposion/schedule/models.py @@ -90,10 +90,6 @@ class Slot(models.Model): content_override = models.TextField(blank=True, verbose_name=_("Content override")) content_override_html = models.TextField(blank=True) - def save(self, *args, **kwargs): - self.content_override_html = parse(self.content_override) - return super(Slot, self).save(*args, **kwargs) - def assign(self, content): """ Assign the given content to this slot and if a previous slot content