diff options
author | luxagraf <sng@luxagraf.net> | 2023-05-23 14:41:37 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-05-23 14:41:37 -0500 |
commit | 28a613a8efda914eb5abb1d3d5551aa8be83a620 (patch) | |
tree | 645578c0af7762e185fe691ac5bf743156dffa70 | |
parent | 32ed4dd4eb76ffc1106b57326614c3b156f41411 (diff) |
posts: fixed a typo in trips
-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): |