diff options
author | cedricbonhomme <devnull@localhost> | 2011-10-25 00:05:21 +0200 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2011-10-25 00:05:21 +0200 |
commit | 4a6706c867582b44f0fa8f6a8ea0223bf9376342 (patch) | |
tree | bb4a016a11d59b8fed2dc9fa23703900907b847d /epub | |
parent | Refactored export functions properly. The appropriate export function of the ... (diff) | |
download | newspipe-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.py | 2 |
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)
|