Fix typos.

This commit is contained in:
John Schember 2011-04-04 18:46:46 -04:00
parent 70bcc90bca
commit c38f81ddf7
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ class MarkdownMLizer(object):
if not self.opts.keep_links:
html = re.sub(r'<\s*/*\s*a[^>]*>', '', html)
if not self.opts.keep_image_references:
html = re.sub(r'<\s*img[^>]*>', '', html)\
html = re.sub(r'<\s*img[^>]*>', '', html)
text = html2text(html)