mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-21 06:46:09 +01:00
Fix #9071 (Author listing does not show names with double quotes)
This commit is contained in:
commit
dba8af1f37
1 changed files with 2 additions and 1 deletions
|
|
@ -1096,7 +1096,8 @@ def tokens(self):
|
|||
if tag in nodes_seen:
|
||||
continue
|
||||
nodes_seen.add(tag)
|
||||
ans.append('%s%s:"=%s"'%(prefix, category, tag.name))
|
||||
ans.append('%s%s:"=%s"'%(prefix, category,
|
||||
tag.name.replace(r'"', r'\"')))
|
||||
return ans
|
||||
|
||||
def find_item_node(self, key, txt, start_path):
|
||||
|
|
|
|||
Loading…
Reference in a new issue