increase mod in delete

This commit is contained in:
Damien Elmes 2009-07-08 12:29:09 +09:00
parent 50103693d1
commit 13a14e498c

View file

@ -100,7 +100,7 @@ def deleteAllLatexImages(deck):
for c, f in enumerate(os.listdir(mdir)):
if f.startswith("latex-"):
os.unlink(os.path.join(mdir, f))
if c % 10 == 0:
if c % 100 == 0:
deck.updateProgress()
deck.finishProgress()