MOBI Output: Fix a regression causing a crash for some input documents that specify text-transform or font-variant CSS properties. Fixes #1711776 [Private bug](https://bugs.launchpad.net/calibre/+bug/1711776)

This commit is contained in:
Kovid Goyal 2017-08-20 17:17:31 +05:30
parent d2a2da5f68
commit e7ad535834
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -82,7 +82,7 @@ class CaseMangler(object):
else:
last.tail = text
else:
child = etree.Element(XHTML('span'), attrib=attrib)
child = elem.makeelement(XHTML('span'), attrib=attrib)
child.text = text.upper()
if last is None:
elem.insert(0, child)