Fix regression that broke bibtex output

This commit is contained in:
Kovid Goyal 2013-11-03 08:19:21 +05:30
parent 45b22e5c4b
commit 9bc88ee95a

View File

@ -2902,7 +2902,7 @@ class BibTeX:
""" """
return self.utf8ToBibtex(u' and '.join([author for author in 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 Strips unmatched BibTeX syntax
""" """