From c5d6f9665b5a83e088d3bbe5f5412c6a6bce9b6b Mon Sep 17 00:00:00 2001 From: John Schember Date: Sat, 12 Feb 2011 14:33:32 -0500 Subject: [PATCH] TXT Input: Rename none formatting-type to plain to correspond to the output option. --- src/calibre/ebooks/txt/input.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/ebooks/txt/input.py b/src/calibre/ebooks/txt/input.py index 8ab1524b02..7d218a36cf 100644 --- a/src/calibre/ebooks/txt/input.py +++ b/src/calibre/ebooks/txt/input.py @@ -38,10 +38,10 @@ class TXTInput(InputFormatPlugin): 'starts a paragraph.' '* unformatted: Most lines have hard line breaks, few/no blank lines or indents.')), OptionRecommendation(name='formatting_type', recommended_value='auto', - choices=['auto', 'none', 'heuristic', 'textile', 'markdown'], + choices=['auto', 'plain', 'heuristic', 'textile', 'markdown'], help=_('Formatting used within the document.' '* auto: Automatically decide which formatting processor to use.\n' - '* none: Do not process the document formatting. Everything is a ' + '* plain: Do not process the document formatting. Everything is a ' 'paragraph and no styling is applied.\n' '* heuristic: Process using heuristics to determine formatting such ' 'as chapter headings and italic text.\n'