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

Variable name typo
This commit is contained in:
Brian Coca 2015-03-02 09:26:28 -05:00
commit 525caf9bc4

View file

@ -132,7 +132,7 @@ def main():
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):
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):
module.fail_json(msg="basedir %s doesn't exist" % (p.basedir))