diff options
Diffstat (limited to 'app/posts')
-rw-r--r-- | app/posts/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/posts/models.py b/app/posts/models.py index 5fa8627..fb0ea46 100644 --- a/app/posts/models.py +++ b/app/posts/models.py @@ -59,7 +59,7 @@ class Trip(models.Model): if not created: md = render_images(self.body_markdown) self.body_html = markdown_to_html(md) - super(Track, self).save(*args, **kwargs) + super(Trip, self).save(*args, **kwargs) class PostType(models.IntegerChoices): |