Commit 9aae1d58 by Karl Brown

Fixed Spelling Error on Line 67

Noticed while running Ansible from Tip.
Throws: NameError: global name 'tself' is not defined
parent ee7f7a82
......@@ -64,7 +64,7 @@ class ActionModule(ActionBase):
if self._task._role is not None:
source = self._loader.path_dwim_relative(self._task._role._role_path, 'files', source)
else:
source = self._loader.path_dwim_relative(tself._loader.get_basedir(), 'files', source)
source = self._loader.path_dwim_relative(self._loader.get_basedir(), 'files', source)
remote_checksum = self._remote_checksum(tmp, dest, all_vars=task_vars)
if remote_checksum != '3':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment