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 # Copyright (C) 2008 Evan Martin <martine@danga.com> | 6 # Copyright (C) 2008 Evan Martin <martine@danga.com> |
7 | 7 |
8 """A git-command for integrating reviews on Rietveld.""" | 8 """A git-command for integrating reviews on Rietveld.""" |
9 | 9 |
10 from distutils.version import LooseVersion | 10 from distutils.version import LooseVersion |
(...skipping 3175 matching lines...) Loading... |
3186 return 2 | 3186 return 2 |
3187 | 3187 |
3188 # Reload settings. | 3188 # Reload settings. |
3189 global settings | 3189 global settings |
3190 settings = Settings() | 3190 settings = Settings() |
3191 | 3191 |
3192 colorize_CMDstatus_doc() | 3192 colorize_CMDstatus_doc() |
3193 dispatcher = subcommand.CommandDispatcher(__name__) | 3193 dispatcher = subcommand.CommandDispatcher(__name__) |
3194 try: | 3194 try: |
3195 return dispatcher.execute(OptionParser(), argv) | 3195 return dispatcher.execute(OptionParser(), argv) |
| 3196 except auth.AuthenticationError as e: |
| 3197 DieWithError(str(e)) |
3196 except urllib2.HTTPError, e: | 3198 except urllib2.HTTPError, e: |
3197 if e.code != 500: | 3199 if e.code != 500: |
3198 raise | 3200 raise |
3199 DieWithError( | 3201 DieWithError( |
3200 ('AppEngine is misbehaving and returned HTTP %d, again. Keep faith ' | 3202 ('AppEngine is misbehaving and returned HTTP %d, again. Keep faith ' |
3201 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e))) | 3203 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e))) |
3202 return 0 | 3204 return 0 |
3203 | 3205 |
3204 | 3206 |
3205 if __name__ == '__main__': | 3207 if __name__ == '__main__': |
3206 # These affect sys.stdout so do it outside of main() to simplify mocks in | 3208 # These affect sys.stdout so do it outside of main() to simplify mocks in |
3207 # unit testing. | 3209 # unit testing. |
3208 fix_encoding.fix_encoding() | 3210 fix_encoding.fix_encoding() |
3209 colorama.init() | 3211 colorama.init() |
3210 try: | 3212 try: |
3211 sys.exit(main(sys.argv[1:])) | 3213 sys.exit(main(sys.argv[1:])) |
3212 except KeyboardInterrupt: | 3214 except KeyboardInterrupt: |
3213 sys.stderr.write('interrupted\n') | 3215 sys.stderr.write('interrupted\n') |
3214 sys.exit(1) | 3216 sys.exit(1) |
OLD | NEW |