Skip to content

Commit

Permalink
Fix type in ansible-galaxy info output (#49096)
Browse files Browse the repository at this point in the history
Changed from 'intalled_version' to 'installed_version'
  • Loading branch information
triplepoint authored and Akasurde committed Nov 27, 2018
1 parent 6f29eaf commit 12a573a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/cli/galaxy.py
Expand Up @@ -283,7 +283,7 @@ def execute_info(self):
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)

Expand Down

0 comments on commit 12a573a

Please sign in to comment.