Don't show tracebacks on Control-C.

pull/4420/head
Michael DeHaan 2013-12-26 11:41:05 -05:00
parent 1119ecebee
commit 81bc44ccc2
1 changed files with 3 additions and 0 deletions

View File

@ -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)