diff options
author | Toshio Kuratomi <toshio@fedoraproject.org> | 2014-12-08 13:07:34 -0800 |
---|---|---|
committer | James Cammarata <jimi@sngx.net> | 2015-02-17 13:34:41 -0600 |
commit | 53a94a1fde5399bb1fc8add377dbde1808abdc9d (patch) | |
tree | fb27fd159508459dd36d5f799208822a3f641de6 | |
parent | f6e7f318a21f77ef3e8da496f95867384efd3b81 (diff) | |
download | ansible-53a94a1fde5399bb1fc8add377dbde1808abdc9d.tar.gz |
Fix comment
-rw-r--r-- | lib/ansible/runner/action_plugins/copy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/runner/action_plugins/copy.py b/lib/ansible/runner/action_plugins/copy.py index bb579e48a8..9f6797a02a 100644 --- a/lib/ansible/runner/action_plugins/copy.py +++ b/lib/ansible/runner/action_plugins/copy.py @@ -197,7 +197,7 @@ class ActionModule(object): return ReturnData(conn=conn, result=result) if remote_checksum != '1' and not force: - # remote_file does not exist so continue to next iteration. + # remote_file exists so continue to next iteration. continue if local_checksum != remote_checksum: |