Skip to content

Commit

Permalink
Merge pull request #119 from pydata/fix-duplicate-slot-save-method
Browse files Browse the repository at this point in the history
Remove duplicate Slot.save method.
  • Loading branch information
paltman committed Feb 20, 2016
2 parents 6bee00d + ddc3553 commit 6e83588
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions symposion/schedule/models.py
Expand Up @@ -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
Expand Down

0 comments on commit 6e83588

Please sign in to comment.