Variable name typo
This commit is contained in:
parent
a7e20b4110
commit
f569b512c9
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))
|
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…
Reference in a new issue