'cards' instead of 'notes' in export

thanks to hgiesel; closes #744
This commit is contained in:
Damien Elmes 2020-08-23 13:48:20 +10:00
parent 63b8b32602
commit 2291f9a9fb

View File

@ -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
)