From 7c68db24e11d127816f1d41e9f88301a11e1c120 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Sat, 8 Oct 2011 11:05:00 -0700 Subject: [PATCH] fixing crash when reviewing cards after adding new facts --- core/anki_host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/anki_host.py b/core/anki_host.py index e77e071..e898868 100644 --- a/core/anki_host.py +++ b/core/anki_host.py @@ -31,7 +31,7 @@ class Anki: deck = self.deck() deck.setUndoStart(action) - deck.addFact(fact) + deck.addFact(fact, False) deck.setUndoEnd(action) deck.rebuildCounts()