Merge pull request #292 from andre-luiz-dos-santos/patch-1

Variable name typo
reviewable/pr18780/r1
Brian Coca 10 years ago
commit 525caf9bc4

@ -132,7 +132,7 @@ def main():
module.fail_json(msg="src %s doesn't exist or not readable" % (p.src)) module.fail_json(msg="src %s doesn't exist or not readable" % (p.src))
if p.dest and not os.access(p.dest, W_OK): if p.dest and not os.access(p.dest, W_OK):
module.fail_json(msg="dest %s doesn't exist or not writable" % (d.dest)) module.fail_json(msg="dest %s doesn't exist or not writable" % (p.dest))
if p.basedir and not path.exists(p.basedir): if p.basedir and not path.exists(p.basedir):
module.fail_json(msg="basedir %s doesn't exist" % (p.basedir)) module.fail_json(msg="basedir %s doesn't exist" % (p.basedir))

Loading…
Cancel
Save