diff --git a/lib/ansible/cli/doc.py b/lib/ansible/cli/doc.py index 0cdf294be53..8c1acd705c7 100644 --- a/lib/ansible/cli/doc.py +++ b/lib/ansible/cli/doc.py @@ -239,6 +239,9 @@ class DocCLI(CLI): 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: text.append("Options (= is mandatory):\n") @@ -269,7 +272,6 @@ class DocCLI(CLI): notes = " ".join(doc['notes']) 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: req = ", ".join(doc['requirements']) text.append("Requirements:%s\n" % textwrap.fill(CLI.tty_ify(req), limit-16, initial_indent=" ", subsequent_indent=opt_indent))