From 92475f7ba764b33d69675ea4b4a13456d4e1d10a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 1 Oct 2014 21:33:17 +0530 Subject: [PATCH] ... --- manual/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/custom.py b/manual/custom.py index 1c30a51855..ba0c10d64b 100644 --- a/manual/custom.py +++ b/manual/custom.py @@ -130,7 +130,7 @@ def generate_ebook_convert_help(preamble, app): raw += '\n\n' + options for pl in sorted(input_format_plugins(), key=lambda x:x.name): parser, plumber = create_option_parser(['ebook-convert', - 'dummyi.'+list(pl.file_types)[0], 'dummyo.epub', '-h'], default_log) + 'dummyi.'+sorted(pl.file_types)[0], 'dummyo.epub', '-h'], default_log) groups = [(pl.name+ ' Options', '', g.option_list) for g in parser.option_groups if g.title == "INPUT OPTIONS"] prog = 'ebook-convert-'+(pl.name.lower().replace(' ', '-'))