unwrapping doesn't work correctly if quotes are encoded as entities

This commit is contained in:
ldolse 2010-09-15 15:58:51 +08:00
parent 70998858f1
commit 66b443adc5

View file

@ -17,7 +17,6 @@
result_exceptions = {
u'<' : '&lt;',
u'>' : '&gt;',
u"'" : '&apos;',
u'&' : '&amp;',
})
_span_pat = re.compile('<span.*?</span>', re.DOTALL|re.IGNORECASE)