diff --git a/anki/deck.py b/anki/deck.py index 980a3fc4c..c8388198f 100644 --- a/anki/deck.py +++ b/anki/deck.py @@ -784,7 +784,7 @@ where id in """ anki.cards.Card.updateStats(card, ease, oldState) # update type & ensure past cutoff card.type = self.cardType(card) - card.due = max(card.due, this.dueCutoff+1) + card.due = max(card.due, self.dueCutoff+1) # allow custom schedulers to munge the card if self.answerPreSave: self.answerPreSave(card, ease)