mirror of
https://github.com/ankitects/anki.git
synced 2025-11-09 14:17:13 -05:00
don't fail when trying to export cram deck
This commit is contained in:
parent
50464b514a
commit
eef669896d
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,7 @@ class AnkiExporter(Exporter):
|
|||
continue
|
||||
if dids and d['id'] not in dids:
|
||||
continue
|
||||
if d['conf'] != 1:
|
||||
if not d['dyn'] and d['conf'] != 1:
|
||||
dconfs[d['conf']] = True
|
||||
self.dst.decks.update(d)
|
||||
# copy used deck confs
|
||||
|
|
|
|||
Loading…
Reference in a new issue