post export hook for apkg

This commit is contained in:
Damien Elmes 2012-08-03 20:29:59 +09:00
parent 4ff3a9969b
commit b74f773d46

View file

@ -198,8 +198,14 @@ class AnkiExporter(Exporter):
# todo: tags?
self.count = self.dst.cardCount()
self.dst.setMod()
self.postExport()
self.dst.close()
def postExport(self):
# overwrite to apply customizations to the deck before it's closed,
# such as update the deck description
pass
# Packaged Anki decks
######################################################################