From 09479a9fa044b837dee3e7c0b6f83b6b1228b77b Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Mon, 15 Jul 2019 13:26:19 -0400 Subject: [PATCH] Remove extra print statement (#59104) Let ansible-inventory handle all output Fixes #59101 --- plugins/inventory/gcp_compute.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/inventory/gcp_compute.py b/plugins/inventory/gcp_compute.py index 137353c..5876aab 100644 --- a/plugins/inventory/gcp_compute.py +++ b/plugins/inventory/gcp_compute.py @@ -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