From 9bc88ee95ad93fe9f770e9543b8cc6baf01b65a2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 3 Nov 2013 08:19:21 +0530 Subject: [PATCH] Fix regression that broke bibtex output --- src/calibre/utils/bibtex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/utils/bibtex.py b/src/calibre/utils/bibtex.py index e86be3ffa2..18bd6a4e81 100644 --- a/src/calibre/utils/bibtex.py +++ b/src/calibre/utils/bibtex.py @@ -2902,7 +2902,7 @@ class BibTeX: """ 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 """