Merge "Add doc params to run and register_cli_opts"

This commit is contained in:
Zuul 2019-02-18 17:03:17 +00:00 committed by Gerrit Code Review
commit b7b4cf2b8e
1 changed files with 8 additions and 1 deletions

View File

@ -146,6 +146,9 @@ def register_cli_options(conf, upgrade_command):
Adds a subcommand to support 'upgrade check' on the command line.
:param conf: An oslo.confg ConfigOpts instance on which to register the
upgrade check arguments.
:param upgrade_command: The UpgradeCommands instance.
"""
def add_parsers(subparsers):
upgrade_action = subparsers.add_parser('upgrade')
@ -157,7 +160,11 @@ def register_cli_options(conf, upgrade_command):
def run(conf):
"""Run the requested command."""
"""Run the requested command.
:param conf: An oslo.confg ConfigOpts instance on which the upgrade
commands have been previously registered.
"""
try:
return conf.command.action_fn()
except Exception: