From 5740b0529579cd1e1a7e1b0d51eaf2bebd6ab134 Mon Sep 17 00:00:00 2001 From: Dylan LEVERRIER Date: Sun, 2 Jun 2024 11:20:52 +0200 Subject: [PATCH] fix sanity error --- plugins/modules/proxmox_backup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/proxmox_backup.py b/plugins/modules/proxmox_backup.py index 4a52a80377..26ac2f1ebe 100644 --- a/plugins/modules/proxmox_backup.py +++ b/plugins/modules/proxmox_backup.py @@ -582,7 +582,7 @@ class ProxmoxBackupAnsible(ProxmoxAnsible): def get_task_parameters(self): # Filtre pour exclure les paramètres d'authentification exclude_keys = ['api_host', 'api_user', 'api_password', 'api_token_id', - 'api_token_secret', 'validate_certs', 'state', 'mailto'] + 'api_token_secret', 'validate_certs', 'state', 'mailto'] task_params = { k.replace('_', '-'): (1 if v is True else (0 if v is False else v)) for k, v in self.module.params.items()