Don't show tracebacks on Control-C.

This commit is contained in:
Michael DeHaan 2013-12-26 11:41:05 -05:00
parent 1119ecebee
commit 81bc44ccc2

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)