Markdown Output: Remove left over print statement from debugging.

This commit is contained in:
John Schember 2011-09-04 18:18:26 -04:00
parent 4a6a013bef
commit cf3b7f85ce

View File

@ -70,7 +70,6 @@ class MarkdownMLizer(OEB2HTML):
l = re.sub('\t', '', l) l = re.sub('\t', '', l)
new_text.append(start + l) new_text.append(start + l)
text = '\n'.join(new_text) text = '\n'.join(new_text)
print(text)
# Remove spaces from blank lines. # Remove spaces from blank lines.
text = re.sub('(?msu)^[ ]+$', '', text) text = re.sub('(?msu)^[ ]+$', '', text)