From bf8da52aace99515b89952939aab8ef1abd091ef Mon Sep 17 00:00:00 2001 From: Sloane Hertel <19572925+s-hertel@users.noreply.github.com> Date: Mon, 23 Sep 2024 10:04:45 -0400 Subject: [PATCH] ansible-galaxy - fix the usage for role/collection install (#83979) --- lib/ansible/cli/galaxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/cli/galaxy.py b/lib/ansible/cli/galaxy.py index 19ccd400445..17c923209d4 100755 --- a/lib/ansible/cli/galaxy.py +++ b/lib/ansible/cli/galaxy.py @@ -482,7 +482,7 @@ class GalaxyCLI(CLI): ) prog = 'ansible-galaxy install' else: - prog = parser._prog_prefix + prog = f"ansible-galaxy {galaxy_type} install" description_text = ( 'Install {0}(s) from file(s), URL(s) or Ansible ' 'Galaxy to the first entry in the config {1}S_PATH '