Remove print statement added when debugging

This commit is contained in:
Greg Neagle
2015-11-18 14:26:02 -08:00
parent 0908595ab1
commit 0c11978c84

View File

@@ -317,7 +317,6 @@ class MSCHTMLFilter(HTMLParser):
def handle_entityref(self, name):
self.entity_count += 1
print "Found an entity: %s" % name
if not self.current_ignore_element:
# add the entity reference as-is
self.filtered_html += u'&%s;' % name