From a6d32eda84623305755ff46503c37d345a8d2feb 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 --- lib/ansible/plugins/inventory/gcp_compute.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/ansible/plugins/inventory/gcp_compute.py b/lib/ansible/plugins/inventory/gcp_compute.py index 137353cacae..5876aab5388 100644 --- a/lib/ansible/plugins/inventory/gcp_compute.py +++ b/lib/ansible/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