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

Side by Side Diff: git-try

Issue 177047: Add licensing header to git-try. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: Created 11 years, 3 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) 2009 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
2 5
3 import getpass 6 import getpass
4 import optparse 7 import optparse
5 import os 8 import os
6 import subprocess 9 import subprocess
7 import tempfile 10 import tempfile
8 import traceback 11 import traceback
9 import urllib 12 import urllib
10 import sys 13 import sys
11 import re 14 import re
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 if options.revision: 169 if options.revision:
167 args.extend(['-r', options.revision]) 170 args.extend(['-r', options.revision])
168 if GetRietveldPatchsetNumber(): 171 if GetRietveldPatchsetNumber():
169 args.extend([ 172 args.extend([
170 '--issue', GetRietveldIssueNumber(), 173 '--issue', GetRietveldIssueNumber(),
171 '--patchset', GetRietveldPatchsetNumber(), 174 '--patchset', GetRietveldPatchsetNumber(),
172 ]) 175 ])
173 176
174 print sendmsg 177 print sendmsg
175 TryChange(args=args) 178 TryChange(args=args)
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