From 6056da01a79a342499e7e33e10ca2925a0750b07 Mon Sep 17 00:00:00 2001 From: John Schember Date: Sat, 1 Jan 2011 15:43:12 -0500 Subject: [PATCH] FB2 Output: Fix bug #8146, log object called incorrectly. --- src/calibre/ebooks/fb2/output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/ebooks/fb2/output.py b/src/calibre/ebooks/fb2/output.py index e8b50d6f77..bce0a00029 100644 --- a/src/calibre/ebooks/fb2/output.py +++ b/src/calibre/ebooks/fb2/output.py @@ -35,7 +35,7 @@ class FB2Output(OutputFormatPlugin): rasterizer = SVGRasterizer() rasterizer(oeb_book, opts) except Unavailable: - self.log.warn('SVG rasterizer unavailable, SVG will not be converted') + log.warn('SVG rasterizer unavailable, SVG will not be converted') linearize_jacket(oeb_book)