[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:
Jonathan Hanson 2018-11-26 20:15:20 -08:00 committed by Matt Clay
parent dcee72ffda
commit 18ef3feed1
2 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,2 @@
minor_changes:
- Fixed typo in ansible-galaxy info command.

View file

@ -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)