mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
used del instead of pop, removed unused pprint import
Conflicts: lib/ansible/modules/core lib/ansible/modules/extras
This commit is contained in:
parent
11b634104f
commit
0ba2298fdd
1 changed files with 1 additions and 2 deletions
|
@ -697,7 +697,7 @@ def execute_info(args, options, parser):
|
||||||
if install_info:
|
if install_info:
|
||||||
if 'version' in install_info:
|
if 'version' in install_info:
|
||||||
install_info['intalled_version'] = install_info['version']
|
install_info['intalled_version'] = install_info['version']
|
||||||
install_info.pop('version', None)
|
del install_info['version']
|
||||||
role_info.update(install_info)
|
role_info.update(install_info)
|
||||||
|
|
||||||
remote_data = api_lookup_role_by_name(api_server, role, False)
|
remote_data = api_lookup_role_by_name(api_server, role, False)
|
||||||
|
@ -714,7 +714,6 @@ def execute_info(args, options, parser):
|
||||||
|
|
||||||
if role_info:
|
if role_info:
|
||||||
print "- %s:" % (role)
|
print "- %s:" % (role)
|
||||||
import pprint
|
|
||||||
for k in sorted(role_info.keys()):
|
for k in sorted(role_info.keys()):
|
||||||
|
|
||||||
if k in SKIP_INFO_KEYS:
|
if k in SKIP_INFO_KEYS:
|
||||||
|
|
Loading…
Reference in a new issue