From 5bd61823ab3baeb9495ea949dd5a1cda794fec1d Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Tue, 27 Aug 2019 09:24:04 -0400 Subject: [PATCH] cli: fix an awx CLI alias typo see: https://github.com/ansible/awx/issues/4603 --- awxkit/awxkit/cli/resource.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awxkit/awxkit/cli/resource.py b/awxkit/awxkit/cli/resource.py index 9cd963536b..1908272fbd 100644 --- a/awxkit/awxkit/cli/resource.py +++ b/awxkit/awxkit/cli/resource.py @@ -16,7 +16,7 @@ DEPRECATED_RESOURCES = { 'credentials': 'credential', 'credential_types': 'credential_type', 'groups': 'group', - 'hosts': 'hosts', + 'hosts': 'host', 'instances': 'instance', 'instance_groups': 'instance_group', 'inventory_scripts': 'inventory_script',