OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 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 """Access the commit queue from the command line. | 6 """Access the commit queue from the command line. |
7 """ | 7 """ |
8 | 8 |
9 __version__ = '0.1' | 9 __version__ = '0.1' |
10 | 10 |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 gen_usage(parser, args[0]) | 174 gen_usage(parser, args[0]) |
175 return command(parser, args[1:]) | 175 return command(parser, args[1:]) |
176 | 176 |
177 # Not a known command. Default to help. | 177 # Not a known command. Default to help. |
178 gen_usage(parser, 'help') | 178 gen_usage(parser, 'help') |
179 return CMDhelp(parser, args) | 179 return CMDhelp(parser, args) |
180 | 180 |
181 | 181 |
182 if __name__ == "__main__": | 182 if __name__ == "__main__": |
183 fix_encoding.fix_encoding() | 183 fix_encoding.fix_encoding() |
184 sys.exit(main()) | 184 try: |
| 185 sys.exit(main()) |
| 186 except KeyboardInterrupt: |
| 187 sys.stderr.write('interrupted\n') |
| 188 sys.exit(1) |
OLD | NEW |