module(file): state what went wrong on exception

This commit is contained in:
Jens Rantil 2013-12-13 21:33:19 +01:00
parent b8347a3144
commit 4262e76aec

View file

@ -235,7 +235,7 @@ def main():
module.exit_json(changed=True)
shutil.rmtree(path, ignore_errors=False)
except Exception, e:
module.exit_json(msg="rmtree failed")
module.exit_json(msg="rmtree failed: %s" % str(e))
else:
if module.check_mode:
module.exit_json(changed=True)