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<hash>, 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
diff --git a/git_cl.py b/git_cl.py
index 1759f04..77f4a9e 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -2033,7 +2033,7 @@
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: