From 27b15a34473856aafe3d715ebea59eba0a39b8f1 Mon Sep 17 00:00:00 2001 From: "rsesek@chromium.org" Date: Fri, 1 Aug 2014 01:06:24 +0000 Subject: [PATCH] Do not put an 'r' in front of the revision when commenting on Rietveld after committing. When using `git cl land` this would result in r, which is not desirable. R=maruel@chromium.org Review URL: https://codereview.chromium.org/432023003 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@286931 0039d316-1c4b-4281-b951-d872f2087c98 --- git_cl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git_cl.py b/git_cl.py index 1759f04310..77f4a9e9f1 100755 --- a/git_cl.py +++ b/git_cl.py @@ -2033,7 +2033,7 @@ def SendUpstream(parser, args, cmd): cl.CloseIssue() props = cl.GetIssueProperties() patch_num = len(props['patchsets']) - comment = "Committed patchset #%d manually as r%s" % (patch_num, revision) + comment = "Committed patchset #%d manually as %s" % (patch_num, revision) if options.bypass_hooks: comment += ' (tree was closed).' if GetTreeStatus() == 'closed' else '.' else: