parent
1b349fdf34
commit
be22a670e5
1 changed files with 3 additions and 1 deletions
|
@ -239,6 +239,9 @@ class DocCLI(CLI):
|
||||||
|
|
||||||
text.append("%s\n" % textwrap.fill(CLI.tty_ify(desc), limit, initial_indent=" ", subsequent_indent=" "))
|
text.append("%s\n" % textwrap.fill(CLI.tty_ify(desc), limit, initial_indent=" ", subsequent_indent=" "))
|
||||||
|
|
||||||
|
if 'deprecated' in doc and doc['deprecated'] is not None and len(doc['deprecated']) > 0:
|
||||||
|
text.append("DEPRECATED: \n%s\n" % doc['deprecated'])
|
||||||
|
|
||||||
if 'option_keys' in doc and len(doc['option_keys']) > 0:
|
if 'option_keys' in doc and len(doc['option_keys']) > 0:
|
||||||
text.append("Options (= is mandatory):\n")
|
text.append("Options (= is mandatory):\n")
|
||||||
|
|
||||||
|
@ -269,7 +272,6 @@ class DocCLI(CLI):
|
||||||
notes = " ".join(doc['notes'])
|
notes = " ".join(doc['notes'])
|
||||||
text.append("Notes:%s\n" % textwrap.fill(CLI.tty_ify(notes), limit-6, initial_indent=" ", subsequent_indent=opt_indent))
|
text.append("Notes:%s\n" % textwrap.fill(CLI.tty_ify(notes), limit-6, initial_indent=" ", subsequent_indent=opt_indent))
|
||||||
|
|
||||||
|
|
||||||
if 'requirements' in doc and doc['requirements'] is not None and len(doc['requirements']) > 0:
|
if 'requirements' in doc and doc['requirements'] is not None and len(doc['requirements']) > 0:
|
||||||
req = ", ".join(doc['requirements'])
|
req = ", ".join(doc['requirements'])
|
||||||
text.append("Requirements:%s\n" % textwrap.fill(CLI.tty_ify(req), limit-16, initial_indent=" ", subsequent_indent=opt_indent))
|
text.append("Requirements:%s\n" % textwrap.fill(CLI.tty_ify(req), limit-16, initial_indent=" ", subsequent_indent=opt_indent))
|
||||||
|
|
Loading…
Reference in a new issue