From a5bc7bd7571bfc767a76c3c114b0b50b40526d30 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Thu, 22 Oct 2015 18:15:42 -0500 Subject: [PATCH] Comment out debug that can cause additional errors depending on content. --- fanficfare/writers/writer_epub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fanficfare/writers/writer_epub.py b/fanficfare/writers/writer_epub.py index 33b15096..6a75fd49 100644 --- a/fanficfare/writers/writer_epub.py +++ b/fanficfare/writers/writer_epub.py @@ -653,7 +653,7 @@ div { margin: 0pt; padding: 0pt; } for index, chap in enumerate(self.story.getChapters()): # (url,title,html) if chap.html: - logger.debug('Writing chapter text for: %s' % chap.title) + #logger.debug('Writing chapter text for: %s' % chap.title) vals={'url':removeEntities(chap.url), 'chapter':removeEntities(chap.title), 'origchapter':removeEntities(chap.origtitle),