Remove extra print statement (#59104)

Let ansible-inventory handle all output
Fixes #59101
This commit is contained in:
Elijah DeLee 2019-07-15 13:26:19 -04:00 committed by ansibot
parent 4898b0a4a2
commit a6d32eda84

View file

@ -317,7 +317,6 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
:return a dict with key/value pairs for each in list.
'''
new_metadata = {}
print(metadata)
for pair in metadata:
new_metadata[pair["key"]] = pair["value"]
return new_metadata