Explorar el Código

atomic-openshift-installer: Fix broken nosetest

This is a fix for the failing test_fresh_install_with_config.
Samuel Munilla hace 9 años
padre
commit
501d72b500
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      utils/src/ooinstall/cli_installer.py

+ 1 - 1
utils/src/ooinstall/cli_installer.py

@@ -752,7 +752,7 @@ def install(ctx, force):
 
 
     check_hosts_config(oo_cfg, ctx.obj['unattended'])
     check_hosts_config(oo_cfg, ctx.obj['unattended'])
 
 
-    print_installation_summary(oo_cfg.hosts, oo_cfg.settings['variant_version'])
+    print_installation_summary(oo_cfg.hosts, oo_cfg.settings.get('variant_version', None))
     click.echo('Gathering information from hosts...')
     click.echo('Gathering information from hosts...')
     callback_facts, error = openshift_ansible.default_facts(oo_cfg.hosts,
     callback_facts, error = openshift_ansible.default_facts(oo_cfg.hosts,
         verbose)
         verbose)