issue #164: missing cast() for _remote_file_exists().
This commit is contained in:
parent
29288b236b
commit
4a823c7a27
|
@ -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):
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue