mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-24 02:26:01 +01:00
Fix regression that broke bibtex output
This commit is contained in:
parent
45b22e5c4b
commit
9bc88ee95a
1 changed files with 1 additions and 1 deletions
|
|
@ -2902,7 +2902,7 @@ def bibtex_author_format(self, item):
|
|||
"""
|
||||
return self.utf8ToBibtex(u' and '.join([author for author in item]))
|
||||
|
||||
def stripUnmatchedSyntax(text, open_character, close_character):
|
||||
def stripUnmatchedSyntax(self, text, open_character, close_character):
|
||||
"""
|
||||
Strips unmatched BibTeX syntax
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue