Revert "open libanki with progress handler"

This reverts commit ecd9ffe2b9.
This commit is contained in:
Damien Elmes 2009-09-25 18:08:04 +09:00
parent a520a61d8a
commit 8f47de9366

View file

@ -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(),