diff options
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)
|