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 """\ | 6 """\ |
7 Wrapper script around Rietveld's upload.py that simplifies working with groups | 7 Wrapper script around Rietveld's upload.py that simplifies working with groups |
8 of files. | 8 of files. |
9 """ | 9 """ |
10 | 10 |
(...skipping 1493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1504 if e.code != 500: | 1504 if e.code != 500: |
1505 raise | 1505 raise |
1506 print >> sys.stderr, ( | 1506 print >> sys.stderr, ( |
1507 'AppEngine is misbehaving and returned HTTP %d, again. Keep faith ' | 1507 'AppEngine is misbehaving and returned HTTP %d, again. Keep faith ' |
1508 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e)) | 1508 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e)) |
1509 return 1 | 1509 return 1 |
1510 | 1510 |
1511 | 1511 |
1512 if __name__ == "__main__": | 1512 if __name__ == "__main__": |
1513 fix_encoding.fix_encoding() | 1513 fix_encoding.fix_encoding() |
1514 sys.exit(main(sys.argv[1:])) | 1514 try: |
| 1515 sys.exit(main(sys.argv[1:])) |
| 1516 except KeyboardInterrupt: |
| 1517 sys.stderr.write('interrupted\n') |
| 1518 sys.exit(1) |
OLD | NEW |