From 8f47de9366339a9139429658b760c5a2ec87279a Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 25 Sep 2009 18:08:04 +0900 Subject: [PATCH] Revert "open libanki with progress handler" This reverts commit ecd9ffe2b9c272c8db3ef5a072614acd257a48dd. --- ankiqt/ui/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ankiqt/ui/main.py b/ankiqt/ui/main.py index c044dc682..4188154fe 100755 --- a/ankiqt/ui/main.py +++ b/ankiqt/ui/main.py @@ -671,7 +671,7 @@ new: self.moveToState("noDeck") return try: - self.deck = DeckStorage.Deck(deckPath, progress=True) + self.deck = DeckStorage.Deck(deckPath) except Exception, e: if hasattr(e, 'data') and e.data.get('type') == 'inuse': if interactive: @@ -1066,7 +1066,7 @@ your deck.""")) toRemove.append(d) continue try: - deck = DeckStorage.Deck(d, backup=False, progress=True) + deck = DeckStorage.Deck(d, backup=False) self.browserDecks.append({ 'path': d, 'name': deck.name(),