mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -04:00
fix typo - been writing too much javascript lately!
This commit is contained in:
parent
1b411938bf
commit
3a7f343464
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue