From: yomguy Date: Wed, 20 Feb 2013 11:31:42 +0000 (+0100) Subject: fix double testimonial X-Git-Tag: 0.9-probarreau~2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=c6a77f30b26d80b68f889ad8a279a4d61e88faae;p=teleforma.git fix double testimonial --- diff --git a/teleforma/models/pro.py b/teleforma/models/pro.py index 162fac5b..fdd0ef30 100755 --- a/teleforma/models/pro.py +++ b/teleforma/models/pro.py @@ -223,7 +223,7 @@ class Testimonial(models.Model): str(self.date_added)]) else: self.title = ' - '.join([self.user.first_name + ' ' + self.user.last_name, str(self.date_added)]) - super(Testimonial, self).save(**kwargs) + self.save() def __unicode__(self): return self.title