MOBI Output: Fix bug that would cause conversion to unneccessarily abort when malformed hyperlinks are present in the input document. Fixes #759313 (Private bug)

This commit is contained in:
Kovid Goyal 2011-04-12 18:45:16 -06:00
parent 15f638784d
commit 40d01c5aea

View File

@ -310,6 +310,7 @@ class Serializer(object):
if href not in id_offsets:
self.logger.warn('Hyperlink target %r not found' % href)
href, _ = urldefrag(href)
else:
ioff = self.id_offsets[href]
for hoff in hoffs:
buffer.seek(hoff)