Update ^C message to the user.

This commit is contained in:
Chris Johns 2013-03-04 18:06:51 +11:00
parent 3b0ce4e0fa
commit 5e502a9ab1
2 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ def run():
except error.exit, eerr: except error.exit, eerr:
pass pass
except KeyboardInterrupt: except KeyboardInterrupt:
_notice(opts, 'user terminated') _notice(opts, 'abort: user terminated')
sys.exit(1) sys.exit(1)
sys.exit(0) sys.exit(0)

View File

@ -601,7 +601,7 @@ def run(args):
except error.exit, eerr: except error.exit, eerr:
pass pass
except KeyboardInterrupt: except KeyboardInterrupt:
_notice(opts, 'user terminated') _notice(opts, 'abort: user terminated')
sys.exit(1) sys.exit(1)
sys.exit(0) sys.exit(0)