Chromium Code Reviews

Side by Side Diff: git_cache.py

Issue 955993006: Handle KeyboardInterrupt consistently in python scripts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """A git command for managing a local cache of git repositories.""" 6 """A git command for managing a local cache of git repositories."""
7 7
8 from __future__ import print_function 8 from __future__ import print_function
9 import errno 9 import errno
10 import logging 10 import logging
(...skipping 679 matching lines...)
690 690
691 return options, args 691 return options, args
692 692
693 693
694 def main(argv): 694 def main(argv):
695 dispatcher = subcommand.CommandDispatcher(__name__) 695 dispatcher = subcommand.CommandDispatcher(__name__)
696 return dispatcher.execute(OptionParser(), argv) 696 return dispatcher.execute(OptionParser(), argv)
697 697
698 698
699 if __name__ == '__main__': 699 if __name__ == '__main__':
700 sys.exit(main(sys.argv[1:])) 700 try:
701 sys.exit(main(sys.argv[1:]))
702 except KeyboardInterrupt:
703 print('interrupted')
704 sys.exit(1)
OLDNEW
« no previous file with comments | « git_auto_svn.py ('k') | git_cherry_pick_upload.py » ('j') | git_number.py » ('J')

Powered by Google App Engine