Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Side by Side Diff: git_try.py

Issue 7111049: git-try should be called as 'git try' from now on. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/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 """Wrapper for trychange.py for git checkout.""" 5 """Wrapper for trychange.py for git checkout."""
6 6
7 import logging 7 import logging
8 import sys 8 import sys
9 9
10 import breakpad # pylint: disable=W0611 10 import breakpad # pylint: disable=W0611
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 ]) 48 ])
49 else: 49 else:
50 rietveld_url = GetRietveldServerUrl() 50 rietveld_url = GetRietveldServerUrl()
51 if rietveld_url: 51 if rietveld_url:
52 args.extend(['--rietveld_url', GetRietveldServerUrl()]) 52 args.extend(['--rietveld_url', GetRietveldServerUrl()])
53 # Hack around a limitation in logging. 53 # Hack around a limitation in logging.
54 logging.getLogger().handlers = [] 54 logging.getLogger().handlers = []
55 try: 55 try:
56 sys.exit(trychange.TryChange( 56 sys.exit(trychange.TryChange(
57 args, file_list=[], swallow_exception=False, 57 args, file_list=[], swallow_exception=False,
58 prog='git-try', 58 prog='git try',
59 extra_epilog='\n' 59 extra_epilog='\n'
60 'git try will diff against your tracked branch and will ' 60 'git try will diff against your tracked branch and will '
61 'detect your rietveld\n' 61 'detect your rietveld\n'
62 'code review if you are using git-cl\n')) 62 'code review if you are using git-cl\n'))
63 except third_party.upload.ClientLoginError, e: 63 except third_party.upload.ClientLoginError, e:
64 print('Got an exception while trying to log in to Rietveld.') 64 print('Got an exception while trying to log in to Rietveld.')
65 print(str(e)) 65 print(str(e))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698