issue #164: missing cast() for _remote_file_exists().

pull/193/head
David Wilson 8 years ago
parent 29288b236b
commit 4a823c7a27

@ -162,7 +162,7 @@ class ActionModuleMixin(ansible.plugins.action.ActionBase):
target user account. target user account.
""" """
LOG.debug('_remote_file_exists(%r)', path) LOG.debug('_remote_file_exists(%r)', path)
return self.call(os.path.exists, path) return self.call(os.path.exists, mitogen.utils.cast(path))
def _configure_module(self, module_name, module_args, task_vars=None): def _configure_module(self, module_name, module_args, task_vars=None):
""" """

Loading…
Cancel
Save