From eef669896dbdb9bb38367245198ed21a667e25e6 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sun, 6 May 2012 19:26:05 +0900 Subject: [PATCH] don't fail when trying to export cram deck --- anki/exporting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/exporting.py b/anki/exporting.py index e57cd4846..f02d587cb 100644 --- a/anki/exporting.py +++ b/anki/exporting.py @@ -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