mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
ignore _ in field references (#803)
This commit is contained in:
parent
7ae90d7f7d
commit
85cb7ef47e
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ If the same name exists, compare checksums."""
|
||||||
unused.append(file)
|
unused.append(file)
|
||||||
else:
|
else:
|
||||||
del normrefs[nfile]
|
del normrefs[nfile]
|
||||||
nohave = normrefs.keys()
|
nohave = [x for x in normrefs.keys() if not x.startswith("_")]
|
||||||
return (nohave, unused)
|
return (nohave, unused)
|
||||||
|
|
||||||
def allMedia(self):
|
def allMedia(self):
|
||||||
|
|
Loading…
Reference in a new issue