Don't show tracebacks on Control-C.
This commit is contained in:
parent
1119ecebee
commit
81bc44ccc2
1 changed files with 3 additions and 0 deletions
|
@ -270,4 +270,7 @@ if __name__ == "__main__":
|
|||
except errors.AnsibleError, e:
|
||||
display("ERROR: %s" % e, color='red', stderr=True)
|
||||
sys.exit(1)
|
||||
except KeyboardInterrupt, ke:
|
||||
display("ERROR: interrupted", color='red', stderr=True)
|
||||
sys.exit(1)
|
||||
|
||||
|
|
Loading…
Reference in a new issue