| 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 """Applies an issue from Rietveld. | 6 """Applies an issue from Rietveld. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 import getpass | 9 import getpass |
| 10 import json | 10 import json |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 revisions = annotated_gclient.parse_got_revision( | 255 revisions = annotated_gclient.parse_got_revision( |
| 256 f, options.revision_mapping) | 256 f, options.revision_mapping) |
| 257 annotated_gclient.emit_buildprops(revisions) | 257 annotated_gclient.emit_buildprops(revisions) |
| 258 | 258 |
| 259 return retcode | 259 return retcode |
| 260 return 0 | 260 return 0 |
| 261 | 261 |
| 262 | 262 |
| 263 if __name__ == "__main__": | 263 if __name__ == "__main__": |
| 264 fix_encoding.fix_encoding() | 264 fix_encoding.fix_encoding() |
| 265 sys.exit(main()) | 265 try: |
| 266 sys.exit(main()) |
| 267 except KeyboardInterrupt: |
| 268 sys.stderr.write('interrupted\n') |
| 269 sys.exit(1) |
| OLD | NEW |