Merge pull request #6597 from tarka/handle-uncreated-symlink-tmpfile
Handle missing symlink tempfile
This commit is contained in:
commit
38c3332b8a
1 changed files with 2 additions and 1 deletions
|
@ -309,7 +309,8 @@ def main():
|
|||
os.symlink(src, tmppath)
|
||||
os.rename(tmppath, path)
|
||||
except OSError, e:
|
||||
os.unlink(tmppath)
|
||||
if os.path.exists(tmppath):
|
||||
os.unlink(tmppath)
|
||||
module.fail_json(path=path, msg='Error while replacing: %s' % str(e))
|
||||
else:
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue