summaryrefslogtreecommitdiff
path: root/lib/ansible/plugins/action/unarchive.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/plugins/action/unarchive.py')
-rw-r--r--lib/ansible/plugins/action/unarchive.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ansible/plugins/action/unarchive.py b/lib/ansible/plugins/action/unarchive.py
index dbd8785393..0b4a0f4da0 100644
--- a/lib/ansible/plugins/action/unarchive.py
+++ b/lib/ansible/plugins/action/unarchive.py
@@ -38,8 +38,8 @@ class ActionModule(ActionBase):
result = super(ActionModule, self).run(tmp, task_vars)
- source = self._task.args.get('src', None)
- dest = self._task.args.get('dest', None)
+ source = self._task.args.get('src', None)
+ dest = self._task.args.get('dest', None)
remote_src = boolean(self._task.args.get('remote_src', False))
creates = self._task.args.get('creates', None)
decrypt = self._task.args.get('decrypt', True)
@@ -73,7 +73,7 @@ class ActionModule(ActionBase):
self._remove_tmp_path(tmp)
return result
- dest = self._remote_expand_user(dest) # CCTODO: Fix path for Windows hosts.
+ dest = self._remote_expand_user(dest) # CCTODO: Fix path for Windows hosts.
source = os.path.expanduser(source)
if not remote_src: