aboutsummaryrefslogtreecommitdiff
path: root/epub
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2011-10-25 00:05:21 +0200
committercedricbonhomme <devnull@localhost>2011-10-25 00:05:21 +0200
commit4a6706c867582b44f0fa8f6a8ea0223bf9376342 (patch)
treebb4a016a11d59b8fed2dc9fa23703900907b847d /epub
parentRefactored export functions properly. The appropriate export function of the ... (diff)
downloadnewspipe-4a6706c867582b44f0fa8f6a8ea0223bf9376342.tar.gz
newspipe-4a6706c867582b44f0fa8f6a8ea0223bf9376342.tar.bz2
newspipe-4a6706c867582b44f0fa8f6a8ea0223bf9376342.zip
It is now possible to export all the database in the ePub format.
Diffstat (limited to 'epub')
-rw-r--r--epub/epub.py2
1 files changed, 1 insertions, 1 deletions
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)
bgstack15