From 587b24ef82885b8e14ce2f6a26ca48865321cee4 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Sat, 26 Nov 2016 09:40:53 -0600 Subject: [PATCH] Comment out some debug output in story.py. --- fanficfare/story.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/fanficfare/story.py b/fanficfare/story.py index 06870deb..a72bd9fb 100644 --- a/fanficfare/story.py +++ b/fanficfare/story.py @@ -806,7 +806,7 @@ class Story(Configurable): fff_plugin.py and jobs.py ''' orig = description = self.getMetadata("description") - logger.debug("description:%s"%description) + # logger.debug("description:%s"%description) if not description: description = '' else: @@ -814,14 +814,14 @@ class Story(Configurable): ## Handles desc with (supposed) html without html->MD ## text->html dance that sanitize_comments_html does. description = sanitize_html(description) - logger.debug("desc using sanitize_html") + # logger.debug("desc using sanitize_html") else: ## because of the html->MD text->html dance, text only ## (or MD/MD-like) descs come out better. description = sanitize_comments_html(description) - logger.debug("desc using sanitize_comments_html") - if orig != description: - logger.debug("\nchanged description\n%s\n%s"%(orig,description)) + # logger.debug("desc using sanitize_comments_html") + # if orig != description: + # logger.debug("\nchanged description\n%s\n%s"%(orig,description)) return description # just for less clutter in adapters.