do something sensible on UsageError

This commit is contained in:
meejah 2018-05-18 18:12:28 -06:00
parent c874a388ce
commit a40364adba

View File

@ -175,7 +175,13 @@ def dispatch(config,
# 4: return a Deferred that does 1 or 2 or 3
def _raise_sys_exit(rc):
sys.exit(rc)
def _error(f):
f.trap(usage.UsageError)
print("Error: {}".format(f.value.message))
sys.exit(1)
d.addCallback(_raise_sys_exit)
d.addErrback(_error)
return d
def _maybe_enable_eliot_logging(options, reactor):