diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-24 11:45:48 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-24 11:45:48 -0500 |
commit | dbb557ec080cf3e17cfb5a09371fa89b8eb7023d (patch) | |
tree | d48cbaae2f5ea02c536549e2086cd146e1013a59 /utils | |
parent | ae628b0d3042b716721041c0a65465e411144d4e (diff) | |
download | openshift-dbb557ec080cf3e17cfb5a09371fa89b8eb7023d.tar.gz openshift-dbb557ec080cf3e17cfb5a09371fa89b8eb7023d.tar.bz2 openshift-dbb557ec080cf3e17cfb5a09371fa89b8eb7023d.tar.xz openshift-dbb557ec080cf3e17cfb5a09371fa89b8eb7023d.zip |
Bug 1284991 - "atomic-openshift-installer uninstall" error when configuration file is missing.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/src/ooinstall/cli_installer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/src/ooinstall/cli_installer.py b/utils/src/ooinstall/cli_installer.py index 0b3af8829..84092a774 100644 --- a/utils/src/ooinstall/cli_installer.py +++ b/utils/src/ooinstall/cli_installer.py @@ -487,7 +487,7 @@ def uninstall(ctx): verbose = ctx.obj['verbose'] if len(oo_cfg.hosts) == 0: - click.echo("No hosts defined in: %s" % oo_cfg['configuration']) + click.echo("No hosts defined in: %s" % oo_cfg.config_path) sys.exit(1) click.echo("OpenShift will be uninstalled from the following hosts:\n") |