mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
DOCX Input: Handle numbering without character styles
DOCX Input: Fix erorr when converting docx files that have numbering defined with no associated character style. Fixes #1232100 [Private bug](https://bugs.launchpad.net/calibre/+bug/1232100)
This commit is contained in:
parent
5ca115eab0
commit
9dd410ed70
@ -90,7 +90,7 @@ class Level(object):
|
|||||||
self.is_numbered = False
|
self.is_numbered = False
|
||||||
cs = self.character_style
|
cs = self.character_style
|
||||||
if lt in {'\uf0a7', 'o'} or (
|
if lt in {'\uf0a7', 'o'} or (
|
||||||
cs.font_family is not inherit and cs.font_family.lower() in {'wingdings', 'symbol'}):
|
cs is not None and cs.font_family is not inherit and cs.font_family.lower() in {'wingdings', 'symbol'}):
|
||||||
self.fmt = {'\uf0a7':'square', 'o':'circle'}.get(lt, 'disc')
|
self.fmt = {'\uf0a7':'square', 'o':'circle'}.get(lt, 'disc')
|
||||||
else:
|
else:
|
||||||
self.bullet_template = lt
|
self.bullet_template = lt
|
||||||
|
Loading…
x
Reference in New Issue
Block a user