Commit 2f03453104dc13dd3344c73d92a01a2620c23a9c

Authored by Rohan Rangray
1 parent 92415314e1
Exists in master

Fixed typo in study

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

flashcards/models.py View file @ 2f03453
... ... @@ -207,7 +207,7 @@
207 207 else:
208 208 self.last_response_factor = min(1.3, self.last_response_factor+(0.1-(5-q)*(0.08+(5-q)*0.02)))
209 209 self.last_interval = int(round(self.last_interval*self.last_response_factor))
210   - self.next_reviewed = user_flashcard_quiz.when + timedelta(days=self.last_interval)
  210 + self.next_review = user_flashcard_quiz.when + timedelta(days=self.last_interval)
211 211 self.save()
212 212  
213 213 class Meta: