Merge pull request #3042 from lgp171188/patch-1

Fix typo in the copy module error message
This commit is contained in:
Brian Coca 2016-02-15 08:16:03 -05:00
commit 191bf977f7

View file

@ -237,7 +237,7 @@ def main():
if not os.access(src, os.R_OK):
module.fail_json(msg="Source %s not readable" % (src))
if os.path.isdir(src):
module.fail_json(msg="Remote copy does not support recurisive copy of direcory: %s" % (src))
module.fail_json(msg="Remote copy does not support recursive copy of directory: %s" % (src))
checksum_src = module.sha1(src)
checksum_dest = None