From cf3b7f85cec0371f1d8c1995ff9e780c7c81d63e Mon Sep 17 00:00:00 2001 From: John Schember Date: Sun, 4 Sep 2011 18:18:26 -0400 Subject: [PATCH] Markdown Output: Remove left over print statement from debugging. --- src/calibre/ebooks/txt/markdownml.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/calibre/ebooks/txt/markdownml.py b/src/calibre/ebooks/txt/markdownml.py index 30e2d1d7be..878633add3 100644 --- a/src/calibre/ebooks/txt/markdownml.py +++ b/src/calibre/ebooks/txt/markdownml.py @@ -70,7 +70,6 @@ class MarkdownMLizer(OEB2HTML): l = re.sub('\t', '', l) new_text.append(start + l) text = '\n'.join(new_text) - print(text) # Remove spaces from blank lines. text = re.sub('(?msu)^[ ]+$', '', text)