diff --git a/lib/ansible/cli/doc.py b/lib/ansible/cli/doc.py index edefaf041d3..386f8490140 100644 --- a/lib/ansible/cli/doc.py +++ b/lib/ansible/cli/doc.py @@ -78,7 +78,8 @@ class DocCLI(CLI): self.parser.add_option("-j", "--json", action="store_true", default=False, dest='json_dump', help='**For internal testing only** Dump json metadata for all plugins.') self.parser.add_option("-t", "--type", action="store", default='module', dest='type', type='choice', - help='Choose which plugin type (defaults to "module")', + help='Choose which plugin type (defaults to "module"). ' + 'Available plugin types are : {0}'.format(C.DOCUMENTABLE_PLUGINS), choices=C.DOCUMENTABLE_PLUGINS) super(DocCLI, self).parse()