Skip to content

Commit

Permalink
ansible_mitogen: correct typo in MitogenViaSpec.mitogen_lxc_path()
Browse files Browse the repository at this point in the history
self.host_vars -> self._host_vars
  • Loading branch information
InsanePrawn authored and moreati committed Feb 5, 2023
1 parent d488b5e commit 317a2ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansible_mitogen/transport_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ def mitogen_kubectl_path(self):
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')
Expand Down

0 comments on commit 317a2ab

Please sign in to comment.