Revert "Allow exceptions to pass through the program"

breaks handling constants.py errors gracefully

This reverts commit 59f96d713e.
pull/11878/head
Brian Coca 9 years ago
parent d1a6cfe6f0
commit a5e6845c8b

@ -36,7 +36,6 @@ import os
import sys
import traceback
import ansible.constants as C
from ansible.errors import AnsibleError, AnsibleOptionsError, AnsibleParserError
from ansible.utils.display import Display
@ -104,11 +103,8 @@ if __name__ == '__main__':
except Exception as e:
have_cli_options = cli is not None and cli.options is not None
display.error("Unexpected Exception: %s" % str(e), wrap_text=False)
if not have_cli_options or have_cli_options and cli.options.verbosity > 2 or C.DEFAULT_DEBUG:
if not have_cli_options or have_cli_options and cli.options.verbosity > 2:
display.display("the full traceback was:\n\n%s" % traceback.format_exc())
else:
display.display("to see the full traceback, use -vvv")
if C.DEFAULT_DEBUG:
raise
else:
sys.exit(250)
sys.exit(250)

Loading…
Cancel
Save