From 18e8dbefd221189bfed733031319c2b98f1a0e8d Mon Sep 17 00:00:00 2001 From: Taizo 'Tsa6' Simpson Date: Mon, 25 Sep 2017 15:49:15 -0400 Subject: [PATCH] Fixed the postive typo --- LandingPage/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)