summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-11 19:26:23 +0000
committerabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-11 19:26:23 +0000
commit9a3d652cd700936140bceabc486a203693103fcd (patch)
tree45888cd3dabd6b5bfbfa1b7e440de28e65cec520 /tools
parentd85333e0ffa08cdf780978b4c0609758ae85cfea (diff)
downloadchromium_src-9a3d652cd700936140bceabc486a203693103fcd.zip
chromium_src-9a3d652cd700936140bceabc486a203693103fcd.tar.gz
chromium_src-9a3d652cd700936140bceabc486a203693103fcd.tar.bz2
Add another newline before the TBR
Previously, the TBR notation appears on the first line of the description, which prevented the commit-queue from recognizing it as a valid notation. This patch moves it to its own line, causing the patch to be accepted by the commit-queue. BUG= TEST= Review URL: http://codereview.chromium.org/7617013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96436 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-xtools/safely-roll-webkit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/safely-roll-webkit.py b/tools/safely-roll-webkit.py
index 6808291..168569a 100755
--- a/tools/safely-roll-webkit.py
+++ b/tools/safely-roll-webkit.py
@@ -68,7 +68,7 @@ def main():
['git', 'checkout', '-b', 'webkit_roll', 'origin/trunk'])
try:
process_deps(os.path.join(root_dir, 'DEPS'), new_rev)
- commit_msg = msg + '\nTBR=\n'
+ commit_msg = msg + '\n\nTBR=\n'
subprocess2.check_output(['git', 'commit', '-m', commit_msg, 'DEPS'])
subprocess2.check_call(['git', 'diff', 'origin/trunk'])
subprocess2.check_call(['git', 'cl', 'upload', '--use-commit-queue'])