From 7bf918bbc5ee5c25114975df22c67cb2d06f56c4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 22 Feb 2017 06:49:01 +0530 Subject: [PATCH] ... --- src/calibre/ebooks/conversion/plugins/mobi_output.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/calibre/ebooks/conversion/plugins/mobi_output.py b/src/calibre/ebooks/conversion/plugins/mobi_output.py index f4f23b29c7..b9b55d4e44 100644 --- a/src/calibre/ebooks/conversion/plugins/mobi_output.py +++ b/src/calibre/ebooks/conversion/plugins/mobi_output.py @@ -102,7 +102,8 @@ class MOBIOutput(OutputFormatPlugin): 'devices. However, by changing this setting, you can tell ' 'calibre to generate MOBI files that contain both MOBI 6 and ' 'the new KF8 format, or only the new KF8 format. KF8 has ' - 'more features than MOBI 6, but only works with newer Kindles.')), + 'more features than MOBI 6, but only works with newer Kindles. ' + 'Allowed values: {}').format('old, both, new')), ]) @@ -331,5 +332,3 @@ class AZW3Output(OutputFormatPlugin): def specialize_css_for_output(self, log, opts, item, stylizer): from calibre.ebooks.mobi.writer8.cleanup import CSSCleanup CSSCleanup(log, opts)(item, stylizer) - -