| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 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 logging | 6 import logging |
| 7 import optparse | 7 import optparse |
| 8 import subprocess | 8 import subprocess |
| 9 import sys | 9 import sys |
| 10 import threading | 10 import threading |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 retry_count=opts.retry_count, | 146 retry_count=opts.retry_count, |
| 147 delay=opts.delay, | 147 delay=opts.delay, |
| 148 delay_factor=opts.delay_factor, | 148 delay_factor=opts.delay_factor, |
| 149 ) | 149 ) |
| 150 return retry(*args) | 150 return retry(*args) |
| 151 | 151 |
| 152 | 152 |
| 153 if __name__ == '__main__': | 153 if __name__ == '__main__': |
| 154 logging.basicConfig() | 154 logging.basicConfig() |
| 155 logging.getLogger().setLevel(logging.WARNING) | 155 logging.getLogger().setLevel(logging.WARNING) |
| 156 sys.exit(main(sys.argv[2:])) | 156 try: |
| 157 sys.exit(main(sys.argv[2:])) |
| 158 except KeyboardInterrupt: |
| 159 sys.stderr.write('interrupted\n') |
| 160 sys.exit(1) |
| OLD | NEW |