diff --git a/LandingPage/models.py b/LandingPage/models.py index d066e8b..e03a920 100644 --- a/LandingPage/models.py +++ b/LandingPage/models.py @@ -403,8 +403,8 @@ class DiscussionVote(TimestampedModel): related_name='votes', help_text='The board this vote was cast on' ) - postive = models.BooleanField( + positive = models.BooleanField( help_text='If true, the vote is an upvote. Otherwise, it is a downvote. Neutral votes are not recorded' ) def __str__(self): - return "%s %s %s"%(self.user, '\U0001f592' if self.postive else '\U0001f44e', self.board.title) + return "%s %s %s"%(self.user, '\U0001f592' if self.positive else '\U0001f44e', self.board.title)