OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2013 The Chromium Authors. All rights reserved. | 2 # Copyright 2013 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 """Usage: %prog [options] [<commitref>]* | 6 """Usage: %prog [options] [<commitref>]* |
7 | 7 |
8 If no <commitref>'s are supplied, it defaults to HEAD. | 8 If no <commitref>'s are supplied, it defaults to HEAD. |
9 | 9 |
10 Calculates the generation number for one or more commits in a git repo. | 10 Calculates the generation number for one or more commits in a git repo. |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
268 targets = git.parse_commitrefs(*(args or ['HEAD'])) | 268 targets = git.parse_commitrefs(*(args or ['HEAD'])) |
269 except git.BadCommitRefException as e: | 269 except git.BadCommitRefException as e: |
270 parser.error(e) | 270 parser.error(e) |
271 | 271 |
272 load_generation_numbers(targets) | 272 load_generation_numbers(targets) |
273 if not opts.no_cache: | 273 if not opts.no_cache: |
274 finalize(targets) | 274 finalize(targets) |
275 | 275 |
276 print '\n'.join(map(str, map(get_num, targets))) | 276 print '\n'.join(map(str, map(get_num, targets))) |
277 return 0 | 277 return 0 |
278 except KeyboardInterrupt: | 278 except KeyboardInterrupt: |
M-A Ruel
2015/02/26 00:57:39
It's already handled there, worth removing
Sam Clegg
2015/02/26 17:29:21
Done.
| |
279 return 1 | 279 return 1 |
280 return 0 | |
280 | 281 |
281 | 282 |
282 if __name__ == '__main__': # pragma: no cover | 283 if __name__ == '__main__': # pragma: no cover |
283 sys.exit(main()) | 284 try: |
285 sys.exit(main()) | |
286 except KeyboardInterrupt: | |
287 print 'interrupted' | |
288 sys.exit(1) | |
OLD | NEW |