| 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 import datetime | 6 import datetime |
| 7 import optparse | 7 import optparse |
| 8 import os | 8 import os |
| 9 import re | 9 import re |
| 10 import sys | 10 import sys |
| (...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 return 1 | 635 return 1 |
| 636 | 636 |
| 637 if options.local and (options.revert or options.branch): | 637 if options.local and (options.revert or options.branch): |
| 638 option_parser.error("--local cannot be used with --revert or --branch") | 638 option_parser.error("--local cannot be used with --revert or --branch") |
| 639 return 1 | 639 return 1 |
| 640 | 640 |
| 641 return drover(options, args) | 641 return drover(options, args) |
| 642 | 642 |
| 643 | 643 |
| 644 if __name__ == "__main__": | 644 if __name__ == "__main__": |
| 645 sys.exit(main()) | 645 try: |
| 646 sys.exit(main()) |
| 647 except KeyboardInterrupt: |
| 648 sys.stderr.write('interrupted\n') |
| 649 sys.exit(1) |
| OLD | NEW |