- filename = book.html_file.path
- archive.write(filename, str('%s.html' % book.slug))
+ if book.pdf_file:
+ filename = book.pdf_file.path
+ print filename
+ archive.write(filename, str('%s.pdf' % book.slug))
+ if book.odt_file:
+ filename = book.odt_file.path
+ print filename
+ archive.write(filename, str('%s.odt' % book.slug))
+ if book.txt_file:
+ filename = book.txt_file.path
+ print filename
+ archive.write(filename, str('%s.txt' % book.slug))