mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 07:22:23 -04:00
increase mod in delete
This commit is contained in:
parent
50103693d1
commit
13a14e498c
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ def deleteAllLatexImages(deck):
|
||||||
for c, f in enumerate(os.listdir(mdir)):
|
for c, f in enumerate(os.listdir(mdir)):
|
||||||
if f.startswith("latex-"):
|
if f.startswith("latex-"):
|
||||||
os.unlink(os.path.join(mdir, f))
|
os.unlink(os.path.join(mdir, f))
|
||||||
if c % 10 == 0:
|
if c % 100 == 0:
|
||||||
deck.updateProgress()
|
deck.updateProgress()
|
||||||
deck.finishProgress()
|
deck.finishProgress()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue