mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixed Spelling Error on Line 67
Noticed while running Ansible from Tip. Throws: NameError: global name 'tself' is not defined
This commit is contained in:
parent
ee7f7a82a8
commit
9aae1d5810
1 changed files with 1 additions and 1 deletions
|
@ -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':
|
||||
|
|
Loading…
Reference in a new issue