From ff2fa60184a3147de28a85a5c34961f4c7a143f8 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Wed, 5 Feb 2020 11:22:52 -0800 Subject: [PATCH] fixed typo --- ansible_mitogen/mixins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible_mitogen/mixins.py b/ansible_mitogen/mixins.py index 2daaa262..d987d128 100644 --- a/ansible_mitogen/mixins.py +++ b/ansible_mitogen/mixins.py @@ -394,7 +394,7 @@ class ActionModuleMixin(ansible.plugins.action.ActionBase): if self._discovery_deprecation_warnings: if result.get('deprecations') is None: result['deprecations'] = [] - data['deprecations'].extend(self._discovery_deprecation_warnings) + result['deprecations'].extend(self._discovery_deprecation_warnings) return wrap_var(result)