Skip to content

Commit

Permalink
'cards' instead of 'notes' in export
Browse files Browse the repository at this point in the history
thanks to hgiesel; closes #744
  • Loading branch information
dae committed Aug 23, 2020
1 parent 63b8b32 commit 2291f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qt/aqt/exporting.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def exporterChanged(self, idx):
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
)
Expand Down

0 comments on commit 2291f9a

Please sign in to comment.