Commit a6dee74e authored by rmistry@google.com's avatar rmistry@google.com

Make msg about found dependency more accurate.

In https://codereview.chromium.org/1149653002/ we had decided to mark closed CLs are dependencies as well, but I forgot to update the printed out message.

BUG=502255

Review URL: https://codereview.chromium.org/1204963005

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@295831 0039d316-1c4b-4281-b951-d872f2087c98
parent 1d630b0c
...@@ -2202,7 +2202,7 @@ def RietveldUpload(options, args, cl, change): ...@@ -2202,7 +2202,7 @@ def RietveldUpload(options, args, cl, change):
branch_cl_issue, branch_cl_patchset)]) branch_cl_issue, branch_cl_patchset)])
print print
print ('The current branch (%s) is tracking a local branch (%s) with ' print ('The current branch (%s) is tracking a local branch (%s) with '
'an open CL.') % (cl.GetBranch(), local_branch) 'an associated CL.') % (cl.GetBranch(), local_branch)
print 'Adding %s/#ps%s as a dependency patchset.' % ( print 'Adding %s/#ps%s as a dependency patchset.' % (
branch_cl_issue_url, branch_cl_patchset) branch_cl_issue_url, branch_cl_patchset)
print print
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment