From 317a2abd5756b3dfbbedb1f0eae3fa5e6813ef24 Mon Sep 17 00:00:00 2001 From: InsanePrawn Date: Wed, 18 Jan 2023 18:34:40 +0100 Subject: [PATCH] ansible_mitogen: correct typo in MitogenViaSpec.mitogen_lxc_path() self.host_vars -> self._host_vars --- ansible_mitogen/transport_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible_mitogen/transport_config.py b/ansible_mitogen/transport_config.py index cc4e4a79..5fc78185 100644 --- a/ansible_mitogen/transport_config.py +++ b/ansible_mitogen/transport_config.py @@ -753,7 +753,7 @@ class MitogenViaSpec(Spec): return self._host_vars.get('mitogen_kubectl_path') def mitogen_lxc_path(self): - return self.host_vars.get('mitogen_lxc_path') + return self._host_vars.get('mitogen_lxc_path') def mitogen_lxc_attach_path(self): return self._host_vars.get('mitogen_lxc_attach_path')