diff options
author | luxagraf <sng@luxagraf> | 2021-03-31 08:53:56 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf> | 2021-03-31 08:53:56 -0400 |
commit | 5e8d318194cc0b18ff1c5fd45226bfbd960d09fc (patch) | |
tree | 77e782c0da2cbca04ba17138002f00560b6227bf /app/lttr | |
parent | 91a27733f4dcbcc28c07f70fd4326d05f9de7af3 (diff) |
lttr: fixed naming bug
Diffstat (limited to 'app/lttr')
-rw-r--r-- | app/lttr/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lttr/models.py b/app/lttr/models.py index f1125d0..653eded 100644 --- a/app/lttr/models.py +++ b/app/lttr/models.py @@ -253,7 +253,7 @@ class NewsletterMailing(models.Model): self.date_created = timezone.now() if created and not self.featured_image: self.featured_image = LuxImage.objects.latest() - super(NewNewsletterMailing, self).save() + super(NewsletterMailing, self).save() class Subscriber(models.Model): |