summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2023-05-23 14:41:37 -0500
committerluxagraf <sng@luxagraf.net>2023-05-23 14:41:37 -0500
commit28a613a8efda914eb5abb1d3d5551aa8be83a620 (patch)
tree645578c0af7762e185fe691ac5bf743156dffa70
parent32ed4dd4eb76ffc1106b57326614c3b156f41411 (diff)
posts: fixed a typo in trips
-rw-r--r--app/posts/models.py2
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):