Fix command doc lookup in man page generation (#81365)

pull/81374/head
Matt Clay 10 months ago committed by GitHub
parent fead654671
commit f9d674fcfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,2 @@
bugfixes:
- When generating man pages, use ``func`` to find the command function instead of looking it up by the command name.

@ -293,6 +293,7 @@ class GalaxyCLI(CLI):
# Add sub parser for the Galaxy collection actions
collection = type_parser.add_parser('collection', help='Manage an Ansible Galaxy collection.')
collection.set_defaults(func=self.execute_collection) # to satisfy doc build
collection_parser = collection.add_subparsers(metavar='COLLECTION_ACTION', dest='action')
collection_parser.required = True
self.add_download_options(collection_parser, parents=[common, cache_options])
@ -305,6 +306,7 @@ class GalaxyCLI(CLI):
# Add sub parser for the Galaxy role actions
role = type_parser.add_parser('role', help='Manage an Ansible Galaxy role.')
role.set_defaults(func=self.execute_role) # to satisfy doc build
role_parser = role.add_subparsers(metavar='ROLE_ACTION', dest='action')
role_parser.required = True
self.add_init_options(role_parser, parents=[common, force, offline])

@ -170,7 +170,7 @@ def opts_docs(cli_class_name, cli_module_name):
# docs['actions'][action] = {}
# docs['actions'][action]['name'] = action
action_info['name'] = action
action_info['desc'] = trim_docstring(getattr(cli, 'execute_%s' % action).__doc__)
action_info['desc'] = trim_docstring(parser.get_default("func").__doc__)
# docs['actions'][action]['desc'] = getattr(cli, 'execute_%s' % action).__doc__.strip()
action_doc_list = opt_doc_list(parser)

Loading…
Cancel
Save