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

This commit is contained in:
David Wilson 2018-04-05 19:35:03 +01:00
parent 29288b236b
commit 4a823c7a27
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ class ActionModuleMixin(ansible.plugins.action.ActionBase):
target user account.
"""
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):
"""