From 7bee70938bf270d642233fc9e9a1b1d41b61266c Mon Sep 17 00:00:00 2001 From: Eugeniy Mikhailov Date: Sat, 8 Nov 2008 21:11:49 -0500 Subject: [PATCH] fixes typos --- src/calibre/ebooks/lrf/fb2/convert_from.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/ebooks/lrf/fb2/convert_from.py b/src/calibre/ebooks/lrf/fb2/convert_from.py index 642f46b782..dc4644d292 100644 --- a/src/calibre/ebooks/lrf/fb2/convert_from.py +++ b/src/calibre/ebooks/lrf/fb2/convert_from.py @@ -92,7 +92,7 @@ def process_file(path, options, logger=None): options.output = os.path.abspath(os.path.expanduser(options.output)) if not mi.title: mi.title = os.path.splitext(os.path.basename(fb2))[0] - if (not options.title or options.title == _('Unknown')'): + if (not options.title or options.title == _('Unknown')): options.title = mi.title if (not options.author or options.author == _('Unknown')) and mi.authors: options.author = mi.authors.pop()