mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
return actual checksum, or sqlite tries to treat it like an int
This commit is contained in:
parent
35fd3de6fb
commit
98304accb0
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ def downloadMissing(deck):
|
||||||
missing = 0
|
missing = 0
|
||||||
grabbed = 0
|
grabbed = 0
|
||||||
for c, (f, sum) in enumerate(deck.s.all(
|
for c, (f, sum) in enumerate(deck.s.all(
|
||||||
"select filename, not not originalPath from media")):
|
"select filename, originalPath from media")):
|
||||||
path = os.path.join(mdir, f)
|
path = os.path.join(mdir, f)
|
||||||
if not os.path.exists(path):
|
if not os.path.exists(path):
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue