OLD | NEW |
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 """Upload a cherry pick CL to rietveld.""" | 6 """Upload a cherry pick CL to rietveld.""" |
7 | 7 |
8 import argparse | 8 import argparse |
9 import md5 | 9 import md5 |
10 import subprocess2 | 10 import subprocess2 |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 metavar='<branch>', | 132 metavar='<branch>', |
133 required=True, | 133 required=True, |
134 ) | 134 ) |
135 parser.add_argument( | 135 parser.add_argument( |
136 'commit', | 136 'commit', |
137 help='SHA to cherry pick.', | 137 help='SHA to cherry pick.', |
138 metavar='<commit>', | 138 metavar='<commit>', |
139 ) | 139 ) |
140 args = parser.parse_args() | 140 args = parser.parse_args() |
141 cherry_pick(args.branch, args.commit) | 141 cherry_pick(args.branch, args.commit) |
| 142 return 0 |
| 143 |
142 | 144 |
143 if __name__ == '__main__': | 145 if __name__ == '__main__': |
144 sys.exit(main()) | 146 try: |
| 147 sys.exit(main()) |
| 148 except KeyboardInterrupt: |
| 149 sys.stderr.write('interrupted\n') |
| 150 sys.exit(1) |
OLD | NEW |