- archive.write(filename, str('%s.txt' % book.slug))
- if 'mp3' in formats and book.mp3_file:
- filename = book.mp3_file.path
- archive.write(filename, str('%s.mp3' % book.slug))
- if 'ogg' in formats and book.ogg_file:
- filename = book.ogg_file.path
- archive.write(filename, str('%s.ogg' % book.slug))
- if 'daisy' in formats and book.daisy_file:
- filename = book.daisy_file.path
- archive.write(filename, str('%s.daisy.zip' % book.slug))