OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 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 """Get rietveld stats about the review you done, or forgot to do. | 6 """Get rietveld stats about the review you done, or forgot to do. |
7 | 7 |
8 Example: | 8 Example: |
9 - my_reviews.py -r me@chromium.org -Q for stats for last quarter. | 9 - my_reviews.py -r me@chromium.org -Q for stats for last quarter. |
10 """ | 10 """ |
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 else: | 367 else: |
368 print_reviews( | 368 print_reviews( |
369 options.reviewer, | 369 options.reviewer, |
370 options.begin, | 370 options.begin, |
371 options.end, | 371 options.end, |
372 options.instance_url) | 372 options.instance_url) |
373 return 0 | 373 return 0 |
374 | 374 |
375 | 375 |
376 if __name__ == '__main__': | 376 if __name__ == '__main__': |
377 sys.exit(main()) | 377 try: |
| 378 sys.exit(main()) |
| 379 except KeyboardInterrupt: |
| 380 sys.stderr.write('interrupted\n') |
| 381 sys.exit(1) |
OLD | NEW |