From 2291f9a9fb236ed68c0360e55dee5fb9f93a25da Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sun, 23 Aug 2020 13:48:20 +1000 Subject: [PATCH] 'cards' instead of 'notes' in export thanks to hgiesel; closes #744 --- qt/aqt/exporting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/aqt/exporting.py b/qt/aqt/exporting.py index c6716462d..60e965e7d 100644 --- a/qt/aqt/exporting.py +++ b/qt/aqt/exporting.py @@ -67,7 +67,7 @@ class ExportDialog(QDialog): self.exporter = self.exporters[idx][1](self.col) self.isApkg = self.exporter.ext == ".apkg" self.isVerbatim = getattr(self.exporter, "verbatim", False) - self.isTextNote = hasattr(self.exporter, "includeTags") + self.isTextNote = getattr(self.exporter, "includeTags", False) self.frm.includeSched.setVisible( getattr(self.exporter, "includeSched", None) is not None )