fix typo - been writing too much javascript lately!

This commit is contained in:
Damien Elmes 2010-11-12 12:50:07 +09:00
parent 1b411938bf
commit 3a7f343464

View file

@ -784,7 +784,7 @@ where id in """
anki.cards.Card.updateStats(card, ease, oldState) anki.cards.Card.updateStats(card, ease, oldState)
# update type & ensure past cutoff # update type & ensure past cutoff
card.type = self.cardType(card) 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 # allow custom schedulers to munge the card
if self.answerPreSave: if self.answerPreSave:
self.answerPreSave(card, ease) self.answerPreSave(card, ease)