From 17ba24e38f7d5d68f7922bd427478cefb3e95260 Mon Sep 17 00:00:00 2001 From: Cian Hatton Date: Wed, 7 Sep 2022 21:07:58 +0100 Subject: [PATCH] remove print --- plugins/modules/portainer_stack.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/modules/portainer_stack.py b/plugins/modules/portainer_stack.py index 875256a..dc9a8a8 100644 --- a/plugins/modules/portainer_stack.py +++ b/plugins/modules/portainer_stack.py @@ -140,7 +140,6 @@ def handle_state_present(client, module): target_stack_name = module.params["stack_name"] for stack in stacks: - print(stack) if stack["Name"] == target_stack_name and int(stack["EndpointId"]) == module.params["endpoint_id"]: already_exists = True result["stack_id"] = stack["Id"]