`file` module: Don't catch `SystemExit`

This fixes issue #5159.
pull/4420/head
Jens Rantil 2013-12-04 13:13:49 +01:00
parent 27199dc219
commit 705316e303
1 changed files with 1 additions and 1 deletions

View File

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