X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/2f842e1b5a7b2614071eea72de17c712776d5d9e..df5a8ec3e287b1fdb949ef03c8f8388263bcac8b:/apps/catalogue/models.py?ds=sidebyside diff --git a/apps/catalogue/models.py b/apps/catalogue/models.py index ad56496f2..6ab090df7 100644 --- a/apps/catalogue/models.py +++ b/apps/catalogue/models.py @@ -233,7 +233,9 @@ class Book(models.Model): book_descendants += list(child_book.children.all()) # Save XML and HTML files - book.xml_file.save('%s.xml' % book.slug, File(file(xml_file)), save=False) + if not isinstance(xml_file, File): + xml_file = File(file(xml_file)) + book.xml_file.save('%s.xml' % book.slug, xml_file, save=False) html_file = NamedTemporaryFile() if html.transform(book.xml_file.path, html_file):