From 4a6706c867582b44f0fa8f6a8ea0223bf9376342 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Tue, 25 Oct 2011 00:05:21 +0200 Subject: It is now possible to export all the database in the ePub format. --- epub/epub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epub/epub.py') diff --git a/epub/epub.py b/epub/epub.py index 33193295..2c01b54a 100644 --- a/epub/epub.py +++ b/epub/epub.py @@ -240,7 +240,7 @@ class EpubBook: def __writeItems(self): for item in self.getAllItems(): - print item.id, item.destPath + #print item.id, item.destPath if item.html: fout = open(os.path.join(self.rootDir, 'OEBPS', item.destPath), 'w') fout.write(item.html) -- cgit