# HG changeset patch # User neko259 # Date 2013-09-12 18:51:09 # Node ID 2f4adb2ccad8f8795411ac7304d699fe5883514c # Parent 481c6224934dc342278c9d1a7bc7addfc71ebbb7 Fixed typo in getting last replies diff --git a/boards/models.py b/boards/models.py --- a/boards/models.py +++ b/boards/models.py @@ -276,7 +276,7 @@ class Post(models.Model): self.last_edit_time = timezone.now() self.save() -def get_last_replies(self): + def get_last_replies(self): if settings.LAST_REPLIES_COUNT > 0: reply_count = self.get_reply_count()