mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 04:13:47 +02:00
Fix entity detecting regexp in opy metadata reader.
This commit is contained in:
parent
aebce8ac6f
commit
138ab98490
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ def __init__(self, opfreader, cwd):
|
|||
|
||||
class OPFReader(MetaInformation):
|
||||
|
||||
ENTITY_PATTERN = re.compile(r'&(\S+);')
|
||||
ENTITY_PATTERN = re.compile(r'&(\S+?);')
|
||||
|
||||
def __init__(self, stream, dir=os.getcwd()):
|
||||
manage = False
|
||||
|
|
|
|||
Loading…
Reference in a new issue