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()