[Backport 2.6] Fix type in ansible-galaxy info output
Changed from 'intalled_version' to 'installed_version'
(cherry picked from commit 12a573a7db
)
This commit is contained in:
parent
dcee72ffda
commit
18ef3feed1
2 changed files with 3 additions and 1 deletions
|
@ -0,0 +1,2 @@
|
|||
minor_changes:
|
||||
- Fixed typo in ansible-galaxy info command.
|
|
@ -276,7 +276,7 @@ class GalaxyCLI(CLI):
|
|||
install_info = gr.install_info
|
||||
if install_info:
|
||||
if 'version' in install_info:
|
||||
install_info['intalled_version'] = install_info['version']
|
||||
install_info['installed_version'] = install_info['version']
|
||||
del install_info['version']
|
||||
role_info.update(install_info)
|
||||
|
||||
|
|
Loading…
Reference in a new issue