Correct inline documentation

There is no --static-yaml-format option. The patch corrects documentation to
use --static-yaml-inventory option.

Change-Id: Ie4b3b55f5a5f7612bf389bf9be5443181f27fe0f
This commit is contained in:
Sergii Golovatiuk 2018-10-30 19:08:00 +01:00
parent c4bfaa0c44
commit 3cb1465ce4
1 changed files with 3 additions and 3 deletions

View File

@ -38,8 +38,8 @@ opts = [
cfg.BoolOpt('list', help='List active hosts'),
cfg.StrOpt('static-inventory', help=('ini inventory is deprecated, '
'the inventory will be output '
'in yaml format. Please use '
'--static-yaml-format.'),
'in yaml format. Please use '
'--static-yaml-inventory.'),
deprecated_for_removal=True,
deprecated_reason="Use --static-yaml-inventory."),
cfg.StrOpt('static-yaml-inventory', help=('output the active hosts '
@ -155,7 +155,7 @@ def main():
configs.static_yaml_inventory = configs.static_inventory + '.yaml'
print('WARNING: ini format is deprecated, the inventory will '
'be output in yaml format as {}. Please use '
'--static-yaml-format.'.format(
'--static-yaml-inventory.'.format(
configs.static_yaml_inventory))
try:
inventory.write_static_inventory(configs.static_yaml_inventory)