From 110b8ba66099836ca920fe0e80b0938ca3384495 Mon Sep 17 00:00:00 2001 From: Steve Bonds Date: Mon, 13 May 2019 17:35:13 +0100 Subject: [PATCH] ansible-config doesn't edit configs (#56355) Avoid suggesting that it does in the description since that capability doesn't yet exist. --- lib/ansible/cli/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/cli/config.py b/lib/ansible/cli/config.py index 06f3b50abb..4edc801cdc 100644 --- a/lib/ansible/cli/config.py +++ b/lib/ansible/cli/config.py @@ -35,7 +35,7 @@ class ConfigCLI(CLI): def init_parser(self): super(ConfigCLI, self).init_parser( - desc="View, edit, and manage ansible configuration.", + desc="View ansible configuration.", ) common = opt_help.argparse.ArgumentParser(add_help=False)