Merge pull request #292 from andre-luiz-dos-santos/patch-1
Variable name typo
This commit is contained in:
commit
525caf9bc4
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue