Update to SeSQL 0.15

This commit is contained in:
Yohan Boniface 2013-05-14 12:32:52 +02:00
parent fb18bdeb5e
commit 177d4b8c65

View file

@ -77,7 +77,7 @@ CROSS_INDEXES = ()
from htmlentitydefs import name2codepoint
from xml.sax import saxutils
html_entities = dict([('&%s;' % k, unichr(v).encode(config.CHARSET)) for k,v in name2codepoint.items() ])
html_entities = dict([('&%s;' % k, unichr(v).encode(CHARSET)) for k,v in name2codepoint.items() ])
ADDITIONAL_CLEANUP_FUNCTION = lambda value: saxutils.unescape(value, html_entities)
#